]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-clef-first-note.ly
c2391e119ebda172510aa13d9eed5f5c610270b6
[lilypond.git] / input / regression / spacing-clef-first-note.ly
1 \version "2.3.17"
2 \header {
3
4     texidoc = "Clef changes at the start of a line get much more space
5 than clef changes halfway the line."
6
7 }
8
9 \score  {  
10     <<
11         \new Staff {
12             c'2
13             \clef bass e16 f a
14             \clef treble b
15         }
16         \new Staff  {
17             c'4 c'4 c'4 
18         }
19     >>
20     \paper {
21         raggedright = ##t
22         \context {
23             \Staff
24             \remove Time_signature_engraver
25         }
26     }
27 }
28