]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vertically-aligning-dynamics-across-multiple-notes.ly
LSR updates from tarball - July 2012
[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.14.2"
8
9 \header {
10   lsrtags = "expressive-marks"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 %% Translation of GIT committish: d5307870fe0ad47904daba73792c7e17b813737f
24   texidocfr = "
25 Des nuances qui commencent, finissent ou se produisent sur une même note
26 auront le même alignement vertical.  L'augmentation de la propriété
27 @code{staff-padding} de l'objet @code{DynamicLineSpanner} permet
28 d'aligner différentes nuances affectées à différentes notes.
29
30 "
31   doctitlefr = "Alignement vertical des nuances sur plusieurs notes"
32
33   texidoc = "
34 Dynamics that occur at, begin on, or end on the same note will be
35 vertically aligned.  To ensure that dynamics are aligned when they do
36 not occur on the same note, increase the @code{staff-padding} property
37 of the @code{DynamicLineSpanner} object.
38
39 "
40   doctitle = "Vertically aligning dynamics across multiple notes"
41 } % begin verbatim
42
43
44 \relative c' {
45   \override DynamicLineSpanner #'staff-padding = #4
46   c2\p f\mf
47   g2\< b4\> c\!
48 }
49