]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/modifying-default-values-for-articulation-shorthand-notation.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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.4"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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: d96023d8792c8af202c7cb8508010c0d3648899d
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: ae814f45737bd1bdaf65b413a4c37f70b84313b7
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 dashPlus = "trill"
69 \relative c'' { c1-+ }
70