]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-spacing-staff-group.ly
Add newlines at EOF where appropriate.
[lilypond.git] / input / regression / page-spacing-staff-group.ly
1 \version "2.14.0"
2
3 #(set-default-paper-size "a6")
4
5 \book {
6
7   \header {
8     texidoc = "By default, the staves within a StaffGroup are spaced more
9 closely than staves not in a StaffGroup."
10   }
11
12   \paper {
13     ragged-last-bottom = ##f
14   }
15
16   <<
17     \new StaffGroup
18     <<
19       \new Staff c'1
20       \new Staff c'1
21       \new Staff c'1
22     >>
23     \new StaffGroup
24     <<
25       \new Staff c'1
26       \new Staff c'1
27       \new Staff c'1
28     >>
29   >>
30 }