]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/creating-real-parenthesized-dynamics.ly
resolve merge
[lilypond.git] / Documentation / snippets / creating-real-parenthesized-dynamics.ly
diff --git a/Documentation/snippets/creating-real-parenthesized-dynamics.ly b/Documentation/snippets/creating-real-parenthesized-dynamics.ly
new file mode 100644 (file)
index 0000000..c09e494
--- /dev/null
@@ -0,0 +1,55 @@
+%% 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 = "
+Aunque la manera más fácil de añadir paréntesis a una indicación
+de dinámica es utilizar un bloque @code{\\markup}, este método
+tiene un inconveniente: los objetos que se crean se comportarán
+como elementos de marcado de texto y no como indicaciones
+dinámicas.
+
+Sin embargo, es posible crear un objeto similar utilizando el código
+de Scheme equivalente (como se explica en la Referencia de la
+notación), en combinación con la función
+@code{make-dynamic-script}. De esta forma, el elemento de marcado se
+tratará como una indicación dinámica, y por tanto seguirá siendo
+compatible con instrucciones como @code{\\dynamicUp} o
+@code{\\dynamicDown}.
+
+"
+  doctitlees = "Crear indicaciones dinámicas \"verdaderas\" entre paréntesis"
+
+  texidoc = "
+Although the easiest way to add parentheses to a dynamic mark is to use
+a @code{\\markup} block, this method has a downside: the created
+objects will behave like text markups, and not like dynamics.
+
+However, it is possible to create a similar object using the equivalent
+Scheme code (as described in the Notation Reference), combined with the
+@code{make-dynamic-script} function. This way, the markup will be
+regarded as a dynamic, and therefore will remain compatible with
+commands such as @code{\\dynamicUp} or @code{\\dynamicDown}.
+
+
+
+"
+  doctitle = "Creating \"real\" parenthesized dynamics"
+} % begin verbatim
+
+parenF = #(make-dynamic-script (markup #:line (#:normal-text #:italic
+           #:fontsize 2 "(" #:hspace -0.8 #:dynamic "f" #:normal-text
+           #:italic #:fontsize 2 ")")))
+
+\relative c'' {
+  c4\parenF c c \dynamicUp c\parenF
+}
+