X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fcreating-real-parenthesized-dynamics.ly;h=b4375382c1fb893adfa485dba2955bec572d023e;hb=7bb304912f9b9752591abc4216d764a99012b90a;hp=6095e1cec33bdc6ee7a1a691931c13e8247f4c76;hpb=794dcbdb52faf4292036cd1b0270a956cf4316a3;p=lilypond.git diff --git a/Documentation/snippets/creating-real-parenthesized-dynamics.ly b/Documentation/snippets/creating-real-parenthesized-dynamics.ly index 6095e1cec3..b4375382c1 100644 --- a/Documentation/snippets/creating-real-parenthesized-dynamics.ly +++ b/Documentation/snippets/creating-real-parenthesized-dynamics.ly @@ -1,11 +1,12 @@ -%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it +%% Do not edit this file; it is automatically +%% generated from LSR http://lsr.dsi.unimi.it %% This file is in the public domain. -\version "2.13.1" +\version "2.12.2" \header { lsrtags = "expressive-marks, text" -%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca +%% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec 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 @@ -13,13 +14,13 @@ 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 \"Interfaz del -programador de elementos de marcado\"), 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}. +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" @@ -30,9 +31,9 @@ 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 \"Markup programmer interface\"), combined -with the @code{make-dynamic-script} function. This way, the markup will -be regarded as a dynamic, and therefore will remain compatible with +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}. @@ -41,12 +42,10 @@ commands such as @code{\\dynamicUp} or @code{\\dynamicDown}. doctitle = "Creating \"real\" parenthesized dynamics" } % begin verbatim -\paper { ragged-right = ##t } - parenF = #(make-dynamic-script (markup #:line (#:normal-text #:italic #:fontsize 2 "(" #:hspace -0.8 #:dynamic "f" #:normal-text - #:italic #:fontsize 2 ")" - ))) + #:italic #:fontsize 2 ")"))) + \relative c'' { c4\parenF c c \dynamicUp c\parenF }