]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/preventing-extra-naturals-from-being-automatically-added.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / preventing-extra-naturals-from-being-automatically-added.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "pitches, automatic-notation"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13 doctitlees = "Evitar que se añadan becuadros adicionales automáticamente"
14
15 texidoces = "
16 Según las reglas estándar de composición
17 tipográfica, se imprime un becuadro antes de un sostenido o un
18 bemol cuando se tiene que cancelar una alteración anterior en la
19 misma nota.  Para modificar este comportamiento, establezca el
20 valor de la propiedad @code{extraNatural} a @code{##f} (falso)
21 dentro del contexto de @code{Staff}.
22
23 "
24
25
26 %% Translation of GIT committish: bbf8fd2b5a3ebf20a1fdc91613dc49045a53a270
27   texidocit = "
28 Secondo le norme tipografiche standard, un segno di bequadro viene
29 inserito prima di un diesis o di un bemolle se un'alterazione
30 precedente sulla stessa nota deve essere cancellata.  Per cambiare
31 questo comportamento si imposta la proprietà @code{extraNatural} su
32 @code{f} (falso) nel contesto @code{Staff}.
33
34 "
35   doctitleit = "Impedire l'inserimento automatico dei bequadri supplementari"
36
37 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
38   doctitlede = "Verhindern, dass zusätzliche Auflösungszeichen automatisch
39 hinzugefügt werden"
40
41 texidocde = "Den traditionellen Notensatzregeln zufolge wird ein
42 Auflösungszeichen immer dann vor einem Kreuz oder B gesetzt, wenn
43 ein vorheriges Versetzungszeichen der gleichen Note aufgehoben werden
44 soll.  Um dieses Verhalten zu ändern, muss die Eigenschaft
45 @code{extraNatural} im @code{Staff}-Kontext auf \"false\" gesetzt werden.
46 "
47
48 %% Translation of GIT committish: 58a29969da425eaf424946f4119e601545fb7a7e
49   texidocfr = "
50 En accord avec les règles standards de l'écriture musicale, on grave
51 un bécarre avant un dièse ou un bémol si on a besoin d'annuler une
52 altération précédente.  Pour modifier ce comportement, assignez la propriété
53 @code{extraNatural} du contexte @code{Staff} à la valeur @code{##f} (faux).
54 "
55
56   doctitlefr = "Suppression des bécarres superflus"
57
58   texidoc = "
59 In accordance with standard typesetting rules, a natural sign is
60 printed before a sharp or flat if a previous accidental on the same
61 note needs to be canceled.  To change this behavior, set the
62 @code{extraNatural} property to @code{f} in the @code{Staff} context.
63
64
65
66 "
67   doctitle = "Preventing extra naturals from being automatically added"
68 } % begin verbatim
69
70
71 \relative c'' {
72   aeses4 aes ais a
73   \set Staff.extraNatural = ##f
74   aeses4 aes ais a
75 }
76