]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-spacing-stretchability.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / input / regression / page-spacing-stretchability.ly
1 \version "2.13.2"
2
3 #(set-default-paper-size "a6")
4
5 \book {
6
7   \header {
8     texidoc = "The stretchability property affects the amount that staves will
9 move under extreme stretching, but it does not affect the default distance
10 between staves."
11   }
12
13   <<
14     \new Staff {c'1 \pageBreak c'1}
15     \new Staff \with { \override VerticalAxisGroup #'default-next-staff-spacing #'stretchability = #50 } {c'1 c'1}
16     
17     \new Staff {c'1 c'1}
18   >>
19 }