]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/preventing-extra-naturals-from-being-automatically-added.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[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.38"
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  texidoc = "
15 In accordance with standard typesetting rules, a natural sign is
16 printed before a sharp or flat if a previous accidental on the same
17 note needs to be canceled.  To change this behavior, set the
18 @code{extraNatural} property to \"false\" in the @code{Staff} context.
19
20
21 " }
22 % begin verbatim
23 \relative {
24   aeses'4 aes ais a
25   \set Staff.extraNatural = ##f
26   aeses4 aes ais a
27 }