]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-spacing-staff-group-hara-kiri.ly
18ae6d93fccc65bb6cf1c6287c40d602dc3d1dc4
[lilypond.git] / input / regression / page-spacing-staff-group-hara-kiri.ly
1 \version "2.13.42"
2
3 \header {
4   texidoc = "StaffGrouper interacts correctly with \RemoveEmptyStaffContext.
5 In both systems, there should be a large space between the staff groups."
6 }
7
8 \layout {
9   \context {
10     \RemoveEmptyStaffContext
11   }
12 }
13
14 \paper {
15   ragged-right = ##t
16 }
17
18 \score {
19   <<
20     \new StaffGroup = "G1" \with {
21       \override StaffGrouper #'staffgroup-staff-spacing #'basic-distance = #20
22     }
23     <<
24       \new Staff { c'1 \break c'1 \break R1 }
25       \new Staff { c'1 R1 c'1 }
26     >>
27     \new Staff { c'1 c'1 c'1 }
28   >>
29 }