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