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