]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/preventing-extra-naturals-from-being-automatically-added.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / preventing-extra-naturals-from-being-automatically-added.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.62"
4
5 \header {
6   lsrtags = "pitches"
7
8   texidocfr = "
9 En accord avec les règles standards de l'écriture musicale, on grave
10 un bécarre avant un dièse ou un bémol si on a besoin d'annuler une
11 altération précédente.  Pour modifier ce comportement, assignez la propriété
12 @code{extraNatural} du contexte @code{Staff} à la valeur @code{##f} (faux).
13 "
14 doctitlees = "Evitar que se añadan becuadros adicionales automáticamente"
15 texidoces = "
16 Según las reglas estándar de composición tipográfica, se imprime un becuadro
17 antes de un sostenido o un bemol cuando se tiene que cancelar una alteración anterior
18 en la misma nota.  Para modificar este comportamiento, establezca el valor de la
19 propiedad @code{extraNatural}  a @code{##f} (falso) dentro del
20 contexto de @code{Staff}.
21
22 "
23   texidoc = "
24 In accordance with standard typesetting rules, a natural sign is
25 printed before a sharp or flat if a previous accidental on the same
26 note needs to be canceled.  To change this behavior, set the
27 @code{extraNatural} property to \"false\" in the @code{Staff} context.
28
29
30
31 "
32   doctitle = "Preventing extra naturals from being automatically added"
33 } % begin verbatim
34 \relative c'' {
35   aeses4 aes ais a
36   \set Staff.extraNatural = ##f
37   aeses4 aes ais a
38 }