LEFT | RIGHT |
1 \version "2.17.5" | 1 \version "2.17.6" |
2 \header { | 2 \header { |
3 | 3 |
4 texidoc = " | 4 texidoc = " |
5 Rests should not keep staves alive when | 5 Rests should not keep staves alive when |
6 @code{\RemoveEmptyStaffContext} is active. The | 6 @code{\RemoveEmptyStaffContext} is active. The |
7 following example should have only one staff. | 7 following example should have only one staff. |
8 " | 8 " |
9 | 9 |
10 } | 10 } |
11 | 11 |
12 \score { | 12 \score { |
13 << | 13 << |
14 \new Staff { | 14 \new Staff { |
15 \partial 16 r16 | R1 | r1 | 15 \partial 16 r16 | R1 | r1 |
16 } | 16 } |
17 \new Staff { | 17 \new Staff { |
18 \partial 16 c'16 | c'1 | c'1 | 18 \partial 16 c'16 | c'1 | c'1 |
19 } | 19 } |
20 >> | 20 >> |
21 | 21 |
22 \layout { \context { \RemoveEmptyStaffContext | 22 \layout { \context { \RemoveEmptyStaffContext |
23 \override VerticalAxisGroup remove-first = ##t } } | 23 \override VerticalAxisGroup.remove-first = ##t } } |
24 } | 24 } |
LEFT | RIGHT |