]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/between-systems.ly
* lily/beam-engraver.cc: move new-beam-event to beam-event
[lilypond.git] / input / regression / between-systems.ly
1
2 \version "1.9.1"
3
4 \header{
5 texidoc="
6 By inserting @TeX{} commands between systems, you can force pagebreaks.
7
8 In reality, you'd use the LateX command @code{\\newpage} instead of (pagebreak)
9 of course. 
10 "
11 }
12
13
14
15
16 \score {
17 \notes \relative c' { c1
18
19         \context Score \outputproperty #(make-type-checker 'paper-column-interface)
20                 #'between-system-string = #"(pagebreak)\n\n"
21         \break
22
23 c1 }
24
25 }
26