]> 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 \version "2.11.38"
4
5 \header {
6   lsrtags = "pitches"
7  texidoc = "
8 In accordance with standard typesetting rules, a natural sign is
9 printed before a sharp or flat if a previous accidental on the same
10 note needs to be canceled.  To change this behavior, set the
11 @code{extraNatural} property to \"false\" in the @code{Staff} context.
12
13
14 " }
15 % begin verbatim
16 \relative {
17   aeses'4 aes ais a
18   \set Staff.extraNatural = ##f
19   aeses4 aes ais a
20 }