]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/dynamics-custom-text-spanner-postfix.ly
Add '-dcrop' option to ps and svg backends
[lilypond.git] / Documentation / snippets / dynamics-custom-text-spanner-postfix.ly
index a8ebf995f34c73209f8ddfb492f1881771e340ca..d88f5fbb50c20ead7406276004c1c54e99ec2601 100644 (file)
@@ -1,49 +1,13 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% generated from LSR http://lsr.di.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.2"
+\version "2.19.22"
 
 \header {
-  lsrtags = "tweaks-and-overrides, expressive-marks"
-
-%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
-
-  texidoces = "
-Funciones postfijas para la creación de objetos de extensión de texto
-personalizados.  Los objetos de extensión deben comenzar en la primera
-nota del compás.  Hay que utilizar -\mycresc, en caso contrario el
-comienzo del eobjeto de extensión se asignará a la nota siguiente.
-
-"
-
-  doctitlees = "Objeto personalizado de extensión de texto de matices dinámicos postfijo"
-%%   Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
-
-
-  texidocde = "Die Nachstellung funktioniert für eigene Crescendo-Textstrecker.
-Die Strecker sollten an der ersten Note eines Taktes beginnen.  Man muss
--\mycresc benutzen, sonst wird der Beginn des Streckers der nächsten Note
-zugewiesen.
-
-"
-  doctitlede = "Eigene Dynamiktextspanner nachgestellt"
-
-
-%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
-  texidocfr = "
-Il s'agit de fonctions postfix pour personnaliser l'extension des
-crescendos textuels.  L'extension devrait débuter sur la première note
-de la mesure.  Il faut utiliser @w{@code{-\mycresc}} -- comme une
-articulation -- sous peine que le départ de l'extension n'apparaisse
-qu'à la note suivante.
-
-"
-
-  doctitlefr = "Personnalisation des extenseurs de nuance postfix"
-
+  lsrtags = "expressive-marks, tweaks-and-overrides"
 
   texidoc = "
 Postfix functions for custom crescendo text spanners.  The spanners
@@ -58,13 +22,13 @@ next note.
 % Two functions for (de)crescendo spanners where you can explicitly give the
 % spanner text.
 mycresc =
-#(define-music-function (parser location mymarkup) (markup?)
+#(define-music-function (mymarkup) (markup?)
    (make-music 'CrescendoEvent
                'span-direction START
                'span-type 'text
                'span-text mymarkup))
 mydecresc =
-#(define-music-function (parser location mymarkup) (markup?)
+#(define-music-function (mymarkup) (markup?)
    (make-music 'DecrescendoEvent
                'span-direction START
                'span-type 'text