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