]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/alignment-vertical-spacing.ly
Merge branch 'lilypond/translation' of ssh://pacovila@git.sv.gnu.org/srv/git/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 \version "2.11.48"
4
5 \header {
6   lsrtags = "tweaks-and-overrides, paper-and-layout, spacing"
7
8   texidoc = "
9 By setting properties in @code{NonMusicalPaperColumn}, vertical spacing
10 can be adjusted per system.
11
12
13 By setting @code{alignment-extra-space} or
14 @code{fixed-alignment-extra-space} an individual system may be
15 stretched vertically.
16
17
18 For technical reasons, @code{\\overrideProperty} must be used for
19 changing these properties within a staff; @code{\\override} in a
20 @code{\\context} block may still be used for global overrides. 
21
22 "
23   doctitle = "Alignment vertical spacing"
24 } % begin verbatim
25 #(set-global-staff-size 13)
26
27 \relative c''
28 \new StaffGroup <<
29   \new Staff {
30     c1 \break
31     c1 \break
32     c1 \break
33   }
34   \new Staff {
35     c1 | c | c
36   }
37   \new PianoStaff <<
38     \new Voice  {
39       \set PianoStaff.instrumentName = #"piano"
40       \set PianoStaff.shortInstrumentName = #"pn"
41       c1_"normal"
42       
43       \overrideProperty
44         #"Score.NonMusicalPaperColumn"
45         #'line-break-system-details
46         #'((fixed-alignment-extra-space . 15))
47       c_"fixed-aligment-extra-space"
48
49       \overrideProperty
50         #"Score.NonMusicalPaperColumn"
51         #'line-break-system-details
52         #'((alignment-extra-space . 15))
53       c_"aligment-extra-space"
54     }
55     { c1 | c | c }
56   >>
57 >>