]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-break-between-scores.ly
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / input / regression / page-break-between-scores.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc = "Page breaks work when they are placed at the end of a score,
5 or between scores."
6 }
7
8 #(set-default-paper-size "a6")
9 \book {
10   \score {
11     {a b c' d' \pageBreak}
12   }
13   \score {
14     {a b c' d'}
15   }
16   \pageBreak
17   \score {
18     {a b c' d'}
19   }
20 }