]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/alignment-vertical-manual-setting.ly
57b129926062d3c5308a4ffd96b7f5e2753a7adc
[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.17.6"
10
11 \book {
12   \score {
13     \relative c'' \new StaffGroup <<
14       \new Staff { c1 c c c }
15       \new Staff { c c c c }
16       \new Staff { 
17         \overrideProperty
18         Score.NonMusicalPaperColumn
19         #'line-break-system-details
20         #'((alignment-distances . (#f 20)))
21         c1 \break
22         \overrideProperty
23         Score.NonMusicalPaperColumn
24         #'line-break-system-details
25         #'((alignment-distances . (5 15)))
26         c1 \break
27         \overrideProperty
28         Score.NonMusicalPaperColumn
29         #'line-break-system-details
30         #'((alignment-distances . (15 5)))
31         c1 c
32       }
33     >>
34   }
35 }