]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/modifying-default-values-for-articulation-shorthand-notation.ly
fb8c6f382b8753242f93abbbca03bb04035ce06c
[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.39"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 Las abreviaturas se encuentran definidas dentro del archivo
12 @file{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
25 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
26  texidocde = "
27 Die Abkürzungen sind in der Datei @file{ly/script-init.ly} definiert, wo
28 den Variablen @code{dashHat}, @code{dashPlus}, @code{dashDash},
29 @code{dashBar}, @code{dashLarger}, @code{dashDot} und
30 @code{dashUnderscore} Standardwerte zugewiesen werden.  Diese Standardwerte
31 können verändert werden.  Um zum Beispiel die Abkürzung
32 @code{-+} (@code{dashPlus}) mit dem Triller anstatt mit dem +-Symbol zu
33 assoziieren, muss der Wert @code{trill} der Variable
34 @code{dashPlus} zugewiesen werden:
35
36 "
37   doctitlede = "Die Standardwerte der Abkürzungen von Artikulationen verändern"
38
39 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
40   texidocfr = "
41 Les raccourcis sont répertoriés dans le fichier
42 @file{ly/script-init.ly}, dans lequel on retrouve les variables
43 @code{dashHat}, @code{dashPlus}, @code{dashDash}, @code{dashBar},
44 @code{dashLarger}, @code{dashDot}, et @code{dashUnderscore} ainsi que
45 leur valeur par défaut.  Ces valeurs peuvent être modifiées selon vos
46 besoins.  Il suffit par exemple, pour affecter au raccourci @code{-+}
47 (@code{dashPlus}) le symbole du trille en lieu et place du @code{+}
48 (caractère plus), d'assigner la valeur @code{trill} à la variable
49 @code{dashPlus} :
50
51 "
52   doctitlefr = "Modification de la signification des raccourcis pour les signes d'articulation"
53
54
55   texidoc = "
56 The shorthands are defined in @samp{ly/script-init.ly}, where the
57 variables @code{dashHat}, @code{dashPlus}, @code{dashDash},
58 @code{dashBar}, @code{dashLarger}, @code{dashDot}, and
59 @code{dashUnderscore} are assigned default values.  The default values
60 for the shorthands can be modified. For example, to associate the
61 @code{-+} (@code{dashPlus}) shorthand with the trill symbol instead of
62 the default + symbol, assign the value @code{trill} to the variable
63 @code{dashPlus}:
64
65 "
66   doctitle = "Modifying default values for articulation shorthand notation"
67 } % begin verbatim
68
69 \relative c'' { c1-+ }
70
71 dashPlus = "trill"
72
73 \relative c'' { c1-+ }
74