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