]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/redefining-grace-note-global-defaults.ly
9e2e2d696e3723ae9ec4412754de080f37dfdef5
[lilypond.git] / Documentation / snippets / redefining-grace-note-global-defaults.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 = "rhythms"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11
12 Los valores predeterminados para las notas de adorno están
13 almacenados en los identificadores @code{startGraceMusic},
14 @code{stopGraceMusic}, @code{startAcciaccaturaMusic},
15 @code{stopAcciaccaturaMusic}, @code{startAppoggiaturaMusic} y
16 @code{stopAppoggiaturaMusic}, que están definidos en el archivo
17 @file{ly/grace-init.ly}.  Redefiniéndolos se pueden obtener otros
18 efectos.
19
20 "
21
22   doctitlees = "Redefinición de los valores globales predeterminados para notas de adorno"
23
24
25
26 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
27   texidocde = "
28 Die globalen Standardeinstellungen für Verzierungsnoten werden in
29 den Variablen@code{startGraceMusic}, @code{stopGraceMusic},
30 @code{startAcciaccaturaMusic}, @code{stopAcciaccaturaMusic},
31 @code{startAppoggiaturaMusic} und @code{stopAppoggiaturaMusic}
32 gespeichert, die in der Datei @file{ly/grace-init.ly} definiert
33 sind.  Wenn man sie umdefiniert, können andere Effekte erreicht
34 werden.
35
36 "
37   doctitlede = "Globale Umdefinition von Verzierungsnoten"
38
39
40
41 %% Translation of GIT committish: 374d57cf9b68ddf32a95409ce08ba75816900f6b
42   texidocfr = "
43 Vous pouvez modifier les valeurs des variables @code{startGraceMusic},
44 @code{stopGraceMusic}, @code{startAcciaccaturaMusic},
45 @code{stopAcciaccaturaMusic}, @code{startAppoggiaturaMusic}, et
46 @code{stopAppoggiaturaMusic} afin d'en personnaliser les effets.  Pour
47 plus de détails, voir le fichier @file{ly/grace-init.ly}.
48
49 "
50   doctitlefr = "Redéfinition des réglages de mise en forme par défaut des notes d'ornement"
51
52   texidoc = "
53 The global defaults for grace notes are stored in the identifiers
54 @code{startGraceMusic}, @code{stopGraceMusic},
55 @code{startAcciaccaturaMusic}, @code{stopAcciaccaturaMusic},
56 @code{startAppoggiaturaMusic} and @code{stopAppoggiaturaMusic}, which
57 are defined in the file @code{ly/grace-init.ly}.  By redefining them
58 other effects may be obtained.
59
60 "
61   doctitle = "Redefining grace note global defaults"
62 } % begin verbatim
63
64 startAcciaccaturaMusic = {
65   s1*0(
66   \override Stem #'stroke-style = #"grace"
67   \slurDashed
68 }
69
70 stopAcciaccaturaMusic = {
71   \revert Stem #'stroke-style
72   \slurSolid
73   s1*0)
74 }
75
76 \relative c'' {
77   \acciaccatura d8 c1
78 }
79