]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-spacing-stretchability.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / page-spacing-stretchability.ly
1 \version "2.16.0"
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
17         #'default-staff-staff-spacing #'stretchability = #50
18     } { c'1 c'1 }
19     \new Staff { c'1 c'1 }
20   >>
21 }