]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
Merge branch 'lilypond/translation' of ssh://trettig@git.sv.gnu.org/srv/git/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 \version "2.11.38"
4
5 \header {
6   lsrtags = "pitches"
7
8   texidoc = "
9 When the key signature changes, natural signs are automatically printed
10 to cancel any accidentals from previous key signatures. This may be
11 prevented by setting to \"false\" the @code{printKeyCancellation}
12 property in the @code{Staff} context. 
13
14 "
15   doctitle = "Preventing natural signs from being printed when the key signature changes"
16 } % begin verbatim
17 \relative c' {
18   \key d \major
19   a b cis d
20   \key g \minor
21   a bes c d
22   \set Staff.printKeyCancellation = ##f
23   \key d \major
24   a b cis d
25   \key g \minor
26   a bes c d
27 }