]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-breaking-min-distance2.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / page-breaking-min-distance2.ly
1 \version "2.14.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       #'((basic-distance . 20)
12          (stretchability . 0))
13   }
14 }
15
16 music = { c'1 \break c'1 }
17
18 \book {
19   \paper {
20     paper-height = 9\cm
21   }
22
23   \score { << \new Staff \music \new Staff \music >> }
24 }
25