]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/vertically-aligning-dynamics-across-multiple-notes.ly
resolve merge
[lilypond.git] / Documentation / snippets / vertically-aligning-dynamics-across-multiple-notes.ly
diff --git a/Documentation/snippets/vertically-aligning-dynamics-across-multiple-notes.ly b/Documentation/snippets/vertically-aligning-dynamics-across-multiple-notes.ly
new file mode 100644 (file)
index 0000000..9f1d5ec
--- /dev/null
@@ -0,0 +1,38 @@
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
+\version "2.14.0"
+
+\header {
+  lsrtags = "expressive-marks"
+
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
+  texidoces = "
+Las expresiones dinámicas que se comienzan, terminan o se producen
+en la misma nota se alinean verticalmente.  Para asegurar que las
+expresiones dinámicas se alinean cuando no se producen sobre la
+misma nota, incremente la propiedad @code{staff-padding} del
+objeto @code{DynamicLineSpanner}.
+
+"
+  doctitlees = "Alinear verticalmente expresiones dinámicas que abarcan varias notas"
+
+  texidoc = "
+Dynamics that occur at, begin on, or end on the same note will be
+vertically aligned.  To ensure that dynamics are aligned when they do
+not occur on the same note, increase the @code{staff-padding} property
+of the @code{DynamicLineSpanner} object.
+
+"
+  doctitle = "Vertically aligning dynamics across multiple notes"
+} % begin verbatim
+
+\relative c' {
+  \override DynamicLineSpanner #'staff-padding = #4
+  c2\p f\mf
+  g2\< b4\> c\!
+}
+