]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/alignment-vertical-spacing.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "tweaks-and-overrides, paper-and-layout, spacing"
7
8   texidoces = "
9 Mediante el establecimiento de las propiedades de
10 @code{NonMusicalPaperColumn} se puede ajustar el espaciado vertical en
11 cada sistema.
12
13 Ajustando @code{alignment-extra-space} o
14 @code{fixed-alignment-extra-space} se puede ampliar verticalmente un
15 sistema individual.
16
17 Por razones técnicas, se debe usar @code{\\overrideProperty} para
18 cambiar estas propiedades dentro de un pentagrama; aún se debe usar
19 @code{\\override} dentro de un bloque @code{\\context} para las
20 sobreescrituras globales.
21
22 "
23   doctitlees = "Espaciado de la alineación vertical"
24
25   texidoc = "
26 By setting properties in @code{NonMusicalPaperColumn}, vertical spacing
27 can be adjusted per system.
28
29
30 By setting @code{alignment-extra-space} or
31 @code{fixed-alignment-extra-space} an individual system may be
32 stretched vertically.
33
34
35 For technical reasons, @code{\\overrideProperty} must be used for
36 changing these properties within a staff; @code{\\override} in a
37 @code{\\context} block may still be used for global overrides. 
38
39 "
40   doctitle = "Alignment vertical spacing"
41 } % begin verbatim
42 #(set-global-staff-size 13)
43
44 \relative c''
45 \new StaffGroup <<
46   \new Staff {
47     c1 \break
48     c1 \break
49     c1 \break
50   }
51   \new Staff {
52     c1 | c | c
53   }
54   \new PianoStaff <<
55     \new Voice  {
56       \set PianoStaff.instrumentName = #"piano"
57       \set PianoStaff.shortInstrumentName = #"pn"
58       c1_"normal"
59       
60       \overrideProperty
61         #"Score.NonMusicalPaperColumn"
62         #'line-break-system-details
63         #'((fixed-alignment-extra-space . 15))
64       c_"fixed-aligment-extra-space"
65
66       \overrideProperty
67         #"Score.NonMusicalPaperColumn"
68         #'line-break-system-details
69         #'((alignment-extra-space . 15))
70       c_"aligment-extra-space"
71     }
72     { c1 | c | c }
73   >>
74 >>