]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-breaking-good-estimation.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / page-breaking-good-estimation.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc = "The page breaking algorithm can handle clefs combined
5 with lyrics.  That is, the Y-extent approximations are a little more
6 accurate than just using bounding boxes.  In particular, everything
7 should fit on one page here."
8 }
9
10 #(set-default-paper-size "a6")
11
12 Melody = \relative c' {
13   c2 c | c c | c c | \break
14   c2 c | c c | c c
15 }
16 Words = \lyricmode{
17   bla bla bla bla bla bla
18   bla bla bla bla bla bla
19 }
20 \book {
21   \score {
22     <<
23       \new Staff{\Melody}
24       \addlyrics{\Words}
25       \new Staff{\Melody}
26       \addlyrics{\Words}
27       \new Staff{\Melody}
28       \addlyrics{\Words}
29       \new Staff{\Melody}
30       \addlyrics{\Words}
31     >>
32   }
33 }