]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/alignment-vertical-manual-setting.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / alignment-vertical-manual-setting.ly
1 \header {
2
3   texidoc = "Alignments may be changed per system by setting
4   @code{alignment-distances} in the @code{line-break-system-details}
5   property"
6
7 }
8
9 \version "2.19.21"
10
11 \book {
12   \score {
13     \relative \new StaffGroup <<
14       \new Staff { c''1 c c c }
15       \new Staff { c c c c }
16       \new Staff { 
17         \overrideProperty
18         Score.NonMusicalPaperColumn.line-break-system-details
19         #'((alignment-distances . (#f 20)))
20         c1 \break
21         \overrideProperty
22         Score.NonMusicalPaperColumn.line-break-system-details
23         #'((alignment-distances . (5 15)))
24         c1 \break
25         \overrideProperty
26         Score.NonMusicalPaperColumn.line-break-system-details
27         #'((alignment-distances . (15 5)))
28         c1 c
29       }
30     >>
31   }
32 }