]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-breaking-min-distance2.ly
fdfdd79327e511bc5b327aa82719f24862229b9f
[lilypond.git] / input / regression / page-breaking-min-distance2.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc = "minimum-distance within a system is correctly accounted for in page breaking."
5 }
6
7 \layout {
8   \context {
9     \Score
10     \override VerticalAxisGroup #'staff-staff-spacing =
11       #'((minimum-distance . 20))
12   }
13 }
14
15 music = { c'1 \break c'1 }
16
17 \book {
18   \paper {
19     paper-height = 9\cm
20   }
21
22   \score { << \new Staff \music \new Staff \music >> }
23 }
24