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