X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fdynamics-custom-text-spanner-postfix.ly;h=d88f5fbb50c20ead7406276004c1c54e99ec2601;hb=906b0e079785805e6cdf564c447460d958f6f6f9;hp=591fc51620293a076e1f7c710254d8097be9e5bc;hpb=a42aaa559b71ce5776795fa11a7e1df9110d85b7;p=lilypond.git diff --git a/Documentation/snippets/dynamics-custom-text-spanner-postfix.ly b/Documentation/snippets/dynamics-custom-text-spanner-postfix.ly index 591fc51620..d88f5fbb50 100644 --- a/Documentation/snippets/dynamics-custom-text-spanner-postfix.ly +++ b/Documentation/snippets/dynamics-custom-text-spanner-postfix.ly @@ -1,69 +1,34 @@ -% DO NOT EDIT this file manually; it is automatically -% generated from Documentation/snippets/new -% Make any changes in Documentation/snippets/new/ -% and then run scripts/auxiliar/makelsr.py -% -% This file is in the public domain. -%% Note: this file works from version 2.14.0 -\version "2.14.0" +%% 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: 8b93de6ce951b7b14bc7818f31019524295b990f - - 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: a6b5eea83ddcdd8e1fd0760db385176ff9b2b1cd - - texidocfr = " -Il s'agit de fonctions postfix pour personnaliser l'extension des -crescendos textuels. L'extension devrait débuter sur la première notte -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 +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 @@ -75,6 +40,3 @@ mydecresc = c4-\mydecresc "custom decresc" c4 c4 c4 | c4 c4\! c4 c4 } - - -