LEFT | RIGHT |
1 \version "2.17.5" | 1 \version "2.17.6" |
2 | 2 |
3 \header { | 3 \header { |
4 texidoc = "StaffGrouper interacts correctly with \RemoveEmptyStaffContext. | 4 texidoc = "StaffGrouper interacts correctly with \RemoveEmptyStaffContext. |
5 In both systems, there should be a large space between the staff groups." | 5 In both systems, there should be a large space between the staff groups." |
6 } | 6 } |
7 | 7 |
8 \layout { | 8 \layout { |
9 \context { | 9 \context { |
10 \RemoveEmptyStaffContext | 10 \RemoveEmptyStaffContext |
11 } | 11 } |
12 } | 12 } |
13 | 13 |
14 \paper { | 14 \paper { |
15 ragged-right = ##t | 15 ragged-right = ##t |
16 } | 16 } |
17 | 17 |
18 \score { | 18 \score { |
19 << | 19 << |
20 \new StaffGroup = "G1" \with { | 20 \new StaffGroup = "G1" \with { |
21 \override StaffGrouper staffgroup-staff-spacing.basic-distance = #20 | 21 \override StaffGrouper.staffgroup-staff-spacing.basic-distance = #20 |
22 } | 22 } |
23 << | 23 << |
24 \new Staff { c'1 \break c'1 \break R1 } | 24 \new Staff { c'1 \break c'1 \break R1 } |
25 \new Staff { c'1 R1 c'1 } | 25 \new Staff { c'1 R1 c'1 } |
26 >> | 26 >> |
27 \new Staff { c'1 c'1 c'1 } | 27 \new Staff { c'1 c'1 c'1 } |
28 >> | 28 >> |
29 } | 29 } |
LEFT | RIGHT |