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