]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-turn-page-breaking-badturns.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / page-turn-page-breaking-badturns.ly
1 \version "2.19.21"
2 #(ly:set-option 'warning-as-error #f)
3 #(ly:expect-warning (_ "cannot fit the first page turn onto a single page.  Consider setting first-page-number to an even number."))
4
5 \header {
6     texidoc="If there are no good places to have a page turn,
7 the optimal-breaker will just have to recover gracefully. This
8 should appear on 3 pages.
9 "
10 }
11
12 \book {
13   \paper {
14     #(define page-breaking ly:page-turn-breaking)
15     paper-height = #40
16     print-page-number = ##t
17   }
18
19   \score {
20     \relative {
21       a b c d a b c d \break
22       c d e f c d e f \break
23       d e f g d e f g
24     }
25   }
26 }
27
28