]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/preventing-extra-naturals-from-being-automatically-added.ly
Merge branch 'master' of ssh+git://hanwen@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!
2 %% Tags: pitches
3 \version "2.11.35"
4
5 \header { texidoc = "
6 In accordance with standard typesetting rules, a natural sign is
7 printed before a sharp or flat if a previous accidental on the same
8 note needs to be canceled.  To change this behavior, set the
9 extraNatural property to \"false\" in the Staff context. 
10 " }
11 % begin verbatim
12 \relative {
13 aeses'4 aes ais a
14 \set Staff.extraNatural = ##f
15 aeses4 aes ais a
16 }