]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/preventing-extra-naturals-from-being-automatically-added.ly
LSR: Update.
[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.4"
5
6 \header {
7   lsrtags = "pitches"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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: d96023d8792c8af202c7cb8508010c0d3648899d
24   doctitlede = "Verhindern, dass zusätzliche Auflösungszeichen automatisch
25 hinzugefügt werden"
26
27 texidocde = "Den tranditionellen 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: 203ab4a7388f36b9c89c66671498dbaefccbf86e
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
43   texidoc = "
44 In accordance with standard typesetting rules, a natural sign is
45 printed before a sharp or flat if a previous accidental on the same
46 note needs to be canceled.  To change this behavior, set the
47 @code{extraNatural} property to \"false\" in the @code{Staff} context.
48
49
50
51 "
52   doctitle = "Preventing extra naturals from being automatically added"
53 } % begin verbatim
54
55 \relative c'' {
56   aeses4 aes ais a
57   \set Staff.extraNatural = ##f
58   aeses4 aes ais a
59 }
60