1\version "2.19.21"
2
3\header {
4  texidoc = "The page breaking algorithm can handle clefs combined
5with lyrics.  That is, the Y-extent approximations are a little more
6accurate than just using bounding boxes.  In particular, everything
7should fit on one page here."
8}
9
10#(set-default-paper-size "a6")
11
12Melody = \relative {
13  c'2 c | c c | c c | \break
14  c2 c | c c | c c
15}
16Words = \lyricmode{
17  ma ma ma ma ma ma
18  ma ma ma ma ma ma
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}
34