]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/combining-dynamics-with-markup-texts.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / combining-dynamics-with-markup-texts.ly
diff --git a/Documentation/snippets/combining-dynamics-with-markup-texts.ly b/Documentation/snippets/combining-dynamics-with-markup-texts.ly
new file mode 100644 (file)
index 0000000..6b760f5
--- /dev/null
@@ -0,0 +1,36 @@
+%% 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, text"
+
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
+  texidoces = "
+Ciertas indicaciones dinámicas pueden llevar textos (como @qq{più
+forte} o @qq{piano subito}). Se pueden producir usando un bloque
+@code{\\markup}.
+
+"
+  doctitlees = "Combinar indicaciones dinámicas con marcados textuales"
+
+  texidoc = "
+Some dynamics may involve text indications (such as @qq{più forte} or
+@qq{piano subito}). These can be produced using a @code{\\markup}
+block.
+
+"
+  doctitle = "Combining dynamics with markup texts"
+} % begin verbatim
+
+piuF = \markup { \italic più \dynamic f }
+\layout { ragged-right = ##f }
+\relative c'' {
+  c2\f c-\piuF
+}
+
+