X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fmodifying-default-values-for-articulation-shorthand-notation.ly;h=1c1fcd1019ff14d8805e1b1f9ba1a401f56f6bd7;hb=e7aa6c445f463844dbaa52d38ea4aac2882b5601;hp=32658b9b3585ce4a3ac24ee1014398dd70992b2e;hpb=580faff1d6167b1500228dc5c5ae073dca0ead40;p=lilypond.git diff --git a/Documentation/snippets/modifying-default-values-for-articulation-shorthand-notation.ly b/Documentation/snippets/modifying-default-values-for-articulation-shorthand-notation.ly index 32658b9b35..1c1fcd1019 100644 --- a/Documentation/snippets/modifying-default-values-for-articulation-shorthand-notation.ly +++ b/Documentation/snippets/modifying-default-values-for-articulation-shorthand-notation.ly @@ -1,74 +1,31 @@ -%% Do not edit this file; it is automatically +%% 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.13.39" +\version "2.17.25" \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 - texidoces = " -Las abreviaturas se encuentran definidas dentro del archivo -@code{ly/script-init.ly}, donde las variables @code{dashHat}, -@code{dashPlus}, @code{dashDash}, @code{dashBar}, -@code{dashLarger}, @code{dashDot} y @code{dashUnderscore} reciben -valores predeterminados. Se pueden modificar estos valores -predeterminados para las abreviaturas. Por ejemplo, para asociar -la abreviatura @code{-+} (@code{dashPlus}) con el símbolo del -semitrino en lugar del símbolo predeterminado +, asigne el valor -@code{trill} a la variable @code{dashPlus}: - -" - doctitlees = "Modificar los valores predeterminados para la notación abreviada de las articulaciones" - - -%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 - texidocde = " -Die Abkürzungen sind in der Datei @samp{ly/script-init.ly} definiert, wo -den Variablen @code{dashHat}, @code{dashPlus}, @code{dashDash}, -@code{dashBar}, @code{dashLarger}, @code{dashDot} und -@code{dashUnderscore} Standardwerte zugewiesen werden. Diese Standardwerte -können verändert werden. Um zum Beispiel die Abkürzung -@code{-+} (@code{dashPlus}) mit dem Triller anstatt mit dem +-Symbol zu -assoziieren, muss der Wert @code{trill} der Variable -@code{dashPlus} zugewiesen werden: - -" - doctitlede = "Die Standardwerte der Abkürzungen von Artikulationen verändern" - -%% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20 - texidocfr = " -Les raccourcis sont répertoriés dans le fichier -@code{ly/script-init.ly}, dans lequel on retrouve les variables -@code{dashHat}, @code{dashPlus}, @code{dashDash}, @code{dashBar}, -@code{dashLarger}, @code{dashDot}, et @code{dashUnderscore} ainsi que -leur valeur par défaut. Ces valeurs peuvent être modifiées selon vos -besoins. Il suffit par exemple, pour affecter au raccourci @code{-+} -(@code{dashPlus}) le symbole du trille en lieu et place du @code{+} -(caractère plus), d'assigner la valeur @code{trill} à la variable -@code{dashPlus} : - -" - doctitlefr = "Modification de la signification des raccourcis pour les signes d'articulation" - - texidoc = " The shorthands are defined in @samp{ly/script-init.ly}, where the variables @code{dashHat}, @code{dashPlus}, @code{dashDash}, -@code{dashBar}, @code{dashLarger}, @code{dashDot}, and +@code{dashBang}, @code{dashLarger}, @code{dashDot}, and @code{dashUnderscore} are assigned default values. The default values -for the shorthands can be modified. For example, to associate the -@code{-+} (@code{dashPlus}) shorthand with the trill symbol instead of -the default + symbol, assign the value @code{trill} to the variable +for the shorthands can be modified. For example, to make the @code{-+} +(@code{dashPlus}) shorthand create a trill instead of the default + +(@code{stopped}), assign the value of @code{trill} to the variable @code{dashPlus}: " doctitle = "Modifying default values for articulation shorthand notation" } % begin verbatim + \relative c'' { c1-+ } -dashPlus = "trill" +dashPlus = \trill \relative c'' { c1-+ } -