]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/vertically-aligning-dynamics-across-multiple-notes.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / vertically-aligning-dynamics-across-multiple-notes.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 = "expressive-marks"
7
8   texidoces = "
9 Las expresiones dinámicas que se comienzan, terminan o se producen
10 en la misma nota se alinean verticalmente.  Para asegurar que las
11 expresiones dinámicas se alinean cuando no se producen sobre la
12 misma nota, incremente la propiedad @code{staff-padding} del
13 objeto @code{DynamicLineSpanner}.
14
15 "
16   doctitlees = "Alinear verticalmente expresiones dinámicas que abarcan varias notas"
17
18   texidoc = "
19 Dynamics that occur at, begin on, or end on the same note will be
20 vertically aligned.  To ensure that dynamics are aligned when they do
21 not occur on the same note, increase the @code{staff-padding} property
22 of the @code{DynamicLineSpanner} object. 
23
24 "
25   doctitle = "Vertically aligning dynamics across multiple notes"
26 } % begin verbatim
27 \relative c' {
28   \override DynamicLineSpanner #'staff-padding = #4
29   c2\p f\mf
30   g2\< b4\> c\!
31 }