]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/modifying-default-values-for-articulation-shorthand-notation.ly
03ab024c2a6cd93b6b2c75e4b4385e2ccde85038
[lilypond.git] / Documentation / snippets / modifying-default-values-for-articulation-shorthand-notation.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10   texidoces = "
11 Las abreviaturas se encuentran definidas dentro del archivo
12 @code{ly/script-init.ly}, donde las variables @code{dashHat},
13 @code{dashPlus}, @code{dashDash}, @code{dashBar},
14 @code{dashLarger}, @code{dashDot} y @code{dashUnderscore} reciben
15 valores predeterminados.  Se pueden modificar estos valores
16 predeterminados para las abreviaturas. Por ejemplo, para asociar
17 la abreviatura @code{-+} (@code{dashPlus}) con el símbolo del
18 semitrino en lugar del símbolo predeterminado +, asigne el valor
19 @code{trill} a la variable @code{dashPlus}:
20
21 "
22   doctitlees = "Modificar los valores predeterminados para la notación abreviada de las articulaciones"
23
24 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
25  texidocde = "
26 Die Abkürzungen sind in der Datei @samp{ly/script-init.ly} definiert, wo
27 den Variablen @code{dashHat}, @code{dashPlus}, @code{dashDash},
28 @code{dashBar}, @code{dashLarger}, @code{dashDot} und
29 @code{dashUnderscore} Standardwerte zugewiesen werden.  Diese Standardwerte
30 können verändert werden.  Um zum Beispiel die Abkürzung
31 @code{-+} (@code{dashPlus}) mit dem Triller anstatt mit dem +-Symbol zu
32 assoziieren, muss der Wert @code{trill} der Variable
33 @code{dashPlus} zugewiesen werden:
34
35 "
36   doctitlede = "Die Standardwerte der Abkürzungen von Artikulationen verändern"
37 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
38   texidocfr = "
39 Les raccourcis sont répertoriés dans le fichier
40 @code{ly/script-init.ly}, dans lequel on retrouve les variables
41 @code{dashHat}, @code{dashPlus}, @code{dashDash}, @code{dashBar},
42 @code{dashLarger}, @code{dashDot}, et @code{dashUnderscore} ainsi que
43 leur valeur par défaut.  Ces valeurs peuvent être modifiées selon vos
44 besoins.  Il suffit par exemple, pour affecter au raccourci @code{-+}
45 (@code{dashPlus}) le symbole du trille en lieu et place du @code{+}
46 (caractère plus), d'assigner la valeur @code{trill} à la variable
47 @code{dashPlus} :
48
49 "
50   doctitlefr = "Modification de la signification des raccourcis pour les signes d'articulation"
51
52
53   texidoc = "
54 The shorthands are defined in @samp{ly/script-init.ly}, where the
55 variables @code{dashHat}, @code{dashPlus}, @code{dashDash},
56 @code{dashBar}, @code{dashLarger}, @code{dashDot}, and
57 @code{dashUnderscore} are assigned default values.  The default values
58 for the shorthands can be modified. For example, to associate the
59 @code{-+} (@code{dashPlus}) shorthand with the trill symbol instead of
60 the default + symbol, assign the value @code{trill} to the variable
61 @code{dashPlus}:
62
63 "
64   doctitle = "Modifying default values for articulation shorthand notation"
65 } % begin verbatim
66
67 \relative c'' { c1-+ }
68
69 dashPlus = "trill"
70
71 \relative c'' { c1-+ }
72