]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
Merge branch 'master' of git://git.sv.gnu.org/lilypond
[lilypond.git] / input / lsr / preventing-natural-signs-from-being-printed-when-the-key-signature-changes.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 When the key signature changes, natural signs are automatically printed
8 to cancel any accidentals from previous key signatures. This may be
9 altered by setting to \"false\" the printKeyCancellation property in
10 the Staff context.
11 " }
12 % begin verbatim
13 \relative {
14 \key d \major
15 a b cis d
16 \key g \minor
17 a bes c d
18 \set Staff.printKeyCancellation = ##f
19 \key d \major
20 a b cis d
21 \key g \minor
22 a bes c d
23 }