]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/spacing/alignment-vertical-spacing.ly
Compile fixes.
[lilypond.git] / input / lsr / spacing / alignment-vertical-spacing.ly
1 \version "2.10.12"
2
3 \header { texidoc = "
4 By setting properties in NonMusicalPaperColumn, vertical spacing of alignments can be adjusted per system.
5
6 By setting alignment-extra-space or fixed-alignment-extra-space an individual system may be stretched vertically.
7
8 For technical reasons, overrideProperty has to be used for setting properties on individual object. override in a \context block may still be used for global overrides
9 " }
10
11 #(set-global-staff-size 13)
12
13 \relative c''
14 \new StaffGroup <<
15   \new Staff {
16     c1\break 
17     c\break c\break
18   }
19   \new Staff { c1 c c }
20   \new PianoStaff <<
21     \new Voice  {
22       \set PianoStaff.instrumentName = #"piano"
23       \set PianoStaff.shortInstrumentName = #"pn"
24       c1_"normal"
25       
26       \overrideProperty
27       #"Score.NonMusicalPaperColumn"
28       #'line-break-system-details
29       #'((fixed-alignment-extra-space . 15))
30       c_"fixed-aligment-extra-space"
31
32       \overrideProperty
33       #"Score.NonMusicalPaperColumn"
34       #'line-break-system-details
35       #'((alignment-extra-space . 15))
36       c_"aligment-extra-space"
37     }
38     { c1 c c }
39   >>
40 >>
41
42