]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/system-separator.ly
Add support for max-systems-per-page.
[lilypond.git] / input / regression / system-separator.ly
1 \version "2.11.51"
2
3 \header {
4
5   texidoc = "System separators may be defined as markups in the
6 @code{systemSeparator} field of the paper block.  They are centered
7 between the boundary staves of each system."
8
9 }
10
11 \paper {
12   systemSeparatorMarkup = \slashSeparator
13
14 }
15 foobar = \relative { c1 c \break c c  \break c c }
16 \book
17 {
18   \score {
19      \new GrandStaff <<
20        \new Staff \foobar 
21        \new Staff \foobar 
22      >>
23   }
24 }