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