]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vertically-aligning-dynamics-across-multiple-notes.ly
82d05bf69b0d12c1085298984cc33baec036ffca
[lilypond.git] / Documentation / snippets / vertically-aligning-dynamics-across-multiple-notes.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.12.2"
8
9 \header {
10   lsrtags = "expressive-marks"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 Las expresiones dinámicas que se comienzan, terminan o se producen
15 en la misma nota se alinean verticalmente.  Para asegurar que las
16 expresiones dinámicas se alinean cuando no se producen sobre la
17 misma nota, incremente la propiedad @code{staff-padding} del
18 objeto @code{DynamicLineSpanner}.
19
20 "
21   doctitlees = "Alinear verticalmente expresiones dinámicas que abarcan varias notas"
22
23   texidoc = "
24 Dynamics that occur at, begin on, or end on the same note will be
25 vertically aligned.  To ensure that dynamics are aligned when they do
26 not occur on the same note, increase the @code{staff-padding} property
27 of the @code{DynamicLineSpanner} object.
28
29 "
30   doctitle = "Vertically aligning dynamics across multiple notes"
31 } % begin verbatim
32
33 \relative c' {
34   \override DynamicLineSpanner #'staff-padding = #4
35   c2\p f\mf
36   g2\< b4\> c\!
37 }
38