]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-clef-first-note.ly
264ad91cefefda60243d17b5342909148fe8f346
[lilypond.git] / input / regression / spacing-clef-first-note.ly
1 \version "2.6.0"
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     \layout {
21         raggedright = ##t
22         \context {
23             \Staff
24             \remove Time_signature_engraver
25         }
26     }
27 }
28