]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-spacing-staff-group-nested.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / page-spacing-staff-group-nested.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc = "StaffGroups can be nested, in which case the inner StaffGroup wins."
5 }
6
7 \score {
8  <<
9    \new StaffGroup \with {
10      \override StaffGrouper #'staffgroup-staff-spacing #'basic-distance = #15
11    }
12    <<
13      \new Staff {
14        c'1
15      }
16      \new StaffGroup \with {
17        \override StaffGrouper #'staffgroup-staff-spacing #'basic-distance = #20
18      } <<
19        \new Staff {
20          c'1
21        }
22        \new Staff {
23          c'1
24        }
25      >>
26      \new Staff {
27        c'1
28      }
29    >>
30  >>
31 }
32