]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/system-separator.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / system-separator.ly
1 \version "2.19.21"
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 {
14   c'1 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 }