]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/preventing-extra-naturals-from-being-automatically-added.ly
Doc: update snippet committishes.
[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.10"
5
6 \header {
7   lsrtags = "pitches"
8
9 %% Translation of GIT committish: 45fc8488655f9ea122d1ec6e3328892618bd6971
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 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
23   doctitlede = "Verhindern, dass zusätzliche Auflösungszeichen automatisch
24 hinzugefügt werden"
25
26 texidocde = "Den tranditionellen Notensatzregeln zufolge wird ein
27 Auflösungszeichen immer dann vor einem Kreuz oder B gesetzt, wenn
28 ein vorheriges Versetzungszeichen der gleichen Note aufgehoben werden
29 soll.  Um dieses Verhalten zu ändern, muss die Eigenschaft
30 @code{extraNatural} im @code{Staff}-Kontext auf \"false\" gesetzt werden.
31 "
32 %% Translation of GIT committish: 59968a089729d7400f8ece38d5bc98dbb3656a2b
33   texidocfr = "
34 En accord avec les règles standards de l'écriture musicale, on grave
35 un bécarre avant un dièse ou un bémol si on a besoin d'annuler une
36 altération précédente.  Pour modifier ce comportement, assignez la propriété
37 @code{extraNatural} du contexte @code{Staff} à la valeur @code{##f} (faux).
38 "
39
40   doctitlefr = "Suppression des bécarres superflus"
41
42   texidoc = "
43 In accordance with standard typesetting rules, a natural sign is
44 printed before a sharp or flat if a previous accidental on the same
45 note needs to be canceled.  To change this behavior, set the
46 @code{extraNatural} property to @code{f} in the @code{Staff} context.
47
48
49
50 "
51   doctitle = "Preventing extra naturals from being automatically added"
52 } % begin verbatim
53
54 \relative c'' {
55   aeses4 aes ais a
56   \set Staff.extraNatural = ##f
57   aeses4 aes ais a
58 }
59