]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/alignment-vertical-manual-setting.ly
Merge commit 'origin/dev/jneeman' into systems-per-page
[lilypond.git] / input / regression / alignment-vertical-manual-setting.ly
1 \header {
2
3   texidoc = "Alignments may be changed pre system by setting
4   @code{alignment-offsets} in the @code{line-break-system-details}
5   property"
6
7 }
8
9 \version "2.12.0"
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-offsets . (#f #f -30)))
21         c1 \break
22         \overrideProperty
23         #"Score.NonMusicalPaperColumn"
24         #'line-break-system-details
25         #'((alignment-offsets . (0 -5 -20)))
26         c1 \break
27         \overrideProperty
28         #"Score.NonMusicalPaperColumn"
29         #'line-break-system-details
30         #'((alignment-offsets . (0 -15 -20)))
31         c1 c
32       }
33     >>
34   }
35 }