]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-breaking-min-distance2.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / page-breaking-min-distance2.ly
1 \version "2.17.6"
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