]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/keys.ly
covnert-ly
[lilypond.git] / input / regression / keys.ly
1 \version "1.5.68"
2 \header{
3 texidoc="
4 Key signatures appear on key  changes. They may also
5 appear without barlines.  The restoration accidentals are not printed at
6 the start of the line. If @code{createKeyOnClefChange} is set, they're
7 also created on a clef change.
8 "
9 }
10
11
12
13 \score {
14   \notes \relative c''
15   {
16         \property Staff. createKeyOnClefChange = ##t  
17     \key bes \major c2
18 %    \key c \major %  \minor
19     \key es \major %  \minor
20     c2
21     \break
22     \key bes \major % \major
23     c2 \clef alto c2   \key d \major \clef treble c2
24         \property Staff. keySignature = #'((2 . -1)  (6 . -1) (4 . -1))
25         e2
26   }
27 }