]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-spacing-stretchability.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / page-spacing-stretchability.ly
1 \version "2.17.6"
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 {
16       \override VerticalAxisGroup.default-staff-staff-spacing.stretchability = #50
17     } { c'1 c'1 }
18     \new Staff { c'1 c'1 }
19   >>
20 }