]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
Add a TODO comment re grace note spacing.
[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 \version "2.11.35"
4
5 \header {
6   lsrtags = "pitches"
7  texidoc = "
8 When the key signature changes, natural signs are automatically printed
9 to cancel any accidentals from previous key signatures. This may be
10 altered by setting to \"false\" the printKeyCancellation property in
11 the Staff context.
12 " }
13 % begin verbatim
14 \relative {
15   \key d \major
16   a b cis d
17   \key g \minor
18   a bes c d
19   \set Staff.printKeyCancellation = ##f
20   \key d \major
21   a b cis d
22   \key g \minor
23   a bes c d
24 }