]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/preventing-extra-naturals-from-being-automatically-added.ly
49192e87ab7340a587d6eab9b20a916c8c073872
[lilypond.git] / Documentation / snippets / preventing-extra-naturals-from-being-automatically-added.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "pitches"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10 doctitlees = "Evitar que se añadan becuadros adicionales automáticamente"
11
12 texidoces = "
13 Según las reglas estándar de composición
14 tipográfica, se imprime un becuadro antes de un sostenido o un
15 bemol cuando se tiene que cancelar una alteración anterior en la
16 misma nota.  Para modificar este comportamiento, establezca el
17 valor de la propiedad @code{extraNatural} a @code{##f} (falso)
18 dentro del contexto de @code{Staff}.
19
20 "
21
22
23 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
24   doctitlede = "Verhindern, dass zusätzliche Auflösungszeichen automatisch
25 hinzugefügt werden"
26
27 texidocde = "Den traditionellen Notensatzregeln zufolge wird ein
28 Auflösungszeichen immer dann vor einem Kreuz oder B gesetzt, wenn
29 ein vorheriges Versetzungszeichen der gleichen Note aufgehoben werden
30 soll.  Um dieses Verhalten zu ändern, muss die Eigenschaft
31 @code{extraNatural} im @code{Staff}-Kontext auf \"false\" gesetzt werden.
32 "
33
34 %% Translation of GIT committish: 58a29969da425eaf424946f4119e601545fb7a7e
35   texidocfr = "
36 En accord avec les règles standards de l'écriture musicale, on grave
37 un bécarre avant un dièse ou un bémol si on a besoin d'annuler une
38 altération précédente.  Pour modifier ce comportement, assignez la propriété
39 @code{extraNatural} du contexte @code{Staff} à la valeur @code{##f} (faux).
40 "
41
42   doctitlefr = "Suppression des bécarres superflus"
43
44   texidoc = "
45 In accordance with standard typesetting rules, a natural sign is
46 printed before a sharp or flat if a previous accidental on the same
47 note needs to be canceled.  To change this behavior, set the
48 @code{extraNatural} property to @code{f} in the @code{Staff} context.
49
50
51
52 "
53   doctitle = "Preventing extra naturals from being automatically added"
54 } % begin verbatim
55
56 \relative c'' {
57   aeses4 aes ais a
58   \set Staff.extraNatural = ##f
59   aeses4 aes ais a
60 }
61