]> git.donarmstrong.com Git - lilypond.git/blob - input/test/clef-end-of-line.ly
* lily/parser.yy (Simple_music): \applycontext #FUNCTION allows
[lilypond.git] / input / test / clef-end-of-line.ly
1
2 \version "1.7.7"
3 \header {
4
5     texidoc = "Scales, but with clef and key signature at the end of the line."
6
7 }
8
9 \score {
10     \notes \transpose c c' {
11         \property Staff.Clef \set #'break-visibility = #end-of-line-visible
12         \property Staff.KeySignature \set #'break-visibility = #end-of-line-visible
13         \property Staff.explicitClefVisibility = #end-of-line-visible
14         \property Staff.explicitKeySignatureVisibility = #end-of-line-visible
15
16         % We want the time sig to take space, otherwise there is not
17         % enough white at the start of the line.
18         %
19         
20         \property Staff.TimeSignature \set #'transparent = ##t
21         \property Score.defaultBarType = #"empty"
22         
23         c1 d e f g a b c
24         \key d \major
25         \break
26
27         % see above.
28         \time 4/4
29         
30         d e fis g a b cis d 
31         \key g \major
32         \break
33         \time 4/4    
34 } }
35 %% new-chords-done %%