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