release commit
[lilypond.git] / input / test / clef-end-of-line.ly
blobb95b4243734e4d404b6de6f132bc66b03285fb96
1 \version "2.1.7"
2 \header {
4 texidoc = "@cindex Clef End of Line
5 Scales, but with clef and key signature at the end of the line.
6 " }
8 \score {
9 \notes \transpose c c' {
10 \property Staff.Clef \set #'break-visibility = #end-of-line-visible
11 \property Staff.KeySignature \set #'break-visibility = #end-of-line-visible
12 \property Staff.explicitClefVisibility = #end-of-line-visible
13 \property Staff.explicitKeySignatureVisibility = #end-of-line-visible
15 % We want the time sig to take space, otherwise there is not
16 % enough white at the start of the line.
19 \property Staff.TimeSignature \set #'transparent = ##t
20 \property Score.defaultBarType = #"empty"
22 c1 d e f g a b c
23 \key d \major
24 \break
26 % see above.
27 \time 4/4
29 d e fis g a b cis d
30 \key g \major
31 \break
32 \time 4/4
33 } }