]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/alignment-vertical-spacing.ly
0f7526c38dad343508ef7797e6acfbfee6c89d03
[lilypond.git] / input / lsr / alignment-vertical-spacing.ly
1 %% Do not edit this file; it is auto-generated from LSR!
2 %% Tags: tweaks-and-overrides, paper-and-layout, spacing
3 \version "2.11.35"
4
5 \header { texidoc = "
6 By setting properties in @code{NonMusicalPaperColumn}, vertical spacing
7 of alignments can be adjusted per system.
8
9
10 By setting @code{alignment-extra-space} or
11 @code{fixed-alignment-extra-space} an individual system may be
12 stretched vertically.
13
14
15 For technical reasons, @code{\\overrideProperty} has to be used for
16 setting properties on individual objects. @code{\\override} in a
17 @code{\\context} block may still be used for global overrides. 
18 " }
19 % begin verbatim
20 #(set-global-staff-size 13)
21
22 \relative c''
23 \new StaffGroup <<
24   \new Staff {
25     c1\break 
26     c\break 
27     c\break
28   }
29   \new Staff { 
30     c1 c c 
31   }
32   \new PianoStaff <<
33     \new Voice  {
34       \set PianoStaff.instrumentName = #"piano"
35       \set PianoStaff.shortInstrumentName = #"pn"
36       c1_"normal"
37       
38       \overrideProperty
39         #"Score.NonMusicalPaperColumn"
40         #'line-break-system-details
41         #'((fixed-alignment-extra-space . 15))
42       c_"fixed-aligment-extra-space"
43
44       \overrideProperty
45         #"Score.NonMusicalPaperColumn"
46         #'line-break-system-details
47         #'((alignment-extra-space . 15))
48       c_"aligment-extra-space"
49     }
50     { c1 c c }
51   >>
52 >>
53
54