]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/dynamics-custom-text-spanner-postfix.ly
Issue 4422/5: Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / dynamics-custom-text-spanner-postfix.ly
index 7697c21663232913e8180d47483dce8bbfe11ed0..d88f5fbb50c20ead7406276004c1c54e99ec2601 100644 (file)
@@ -1,41 +1,34 @@
-% Do not edit this file; it is automatically
-% generated from Documentation/snippets/new
-% This file is in the public domain.
-%% Note: this file works from version 2.13.8
-\version "2.13.20"
+%% DO NOT EDIT this file manually; it is automatically
+%% 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.19.22"
 
 \header {
-%% Translation of GIT committish: e0aa246e0ed1a86dc41a99ab79bff822d3320aa7
-
-  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.
-
-"
+  lsrtags = "expressive-marks, tweaks-and-overrides"
 
-  doctitlees = "Objeto personalizado de extensión de texto de matices dinámicos postfijo"
+  texidoc = "
+Postfix functions for custom crescendo text spanners.  The spanners
+should start on the first note of the measure.  One has to use
+-\\mycresc, otherwise the spanner start will rather be assigned to the
+next note.
 
-  lsrtags = "expressive-marks, tweaks-and-overrides"
-  texidoc = "Postfix functions for custom crescendo text spanners.  The spanners
-should start on the first note of the measure.  One has to use -\mycresc,
-otherwise the spanner start will rather be assigned to the next note.
 "
   doctitle = "Dynamics custom text spanner postfix"
 } % begin verbatim
 
-
 % 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
@@ -47,6 +40,3 @@ mydecresc =
   c4-\mydecresc "custom decresc" c4 c4 c4 |
   c4 c4\! c4 c4
 }
-
-
-