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