]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-breaking-page-count-forced-breaks.ly
Fix 801 and 1088.
[lilypond.git] / input / regression / page-breaking-page-count-forced-breaks.ly
1 \version "2.13.23"
2
3 #(set-default-paper-size "a6")
4
5 \book {
6   \header {
7     texidoc = "When specifying page-count together with manual \pageBreaks,
8 page-count must be a list with one more element than the number of
9 \pageBreaks and each element refers to the number of pages between the
10 appropriate consecutive \pageBreaks."
11   }
12
13   \paper {
14     page-count = #'(1 2)
15   }
16
17   { c'1 c'1 \pageBreak c'1 c'1 c'1}
18 }