]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/redefining-grace-note-global-defaults.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[lilypond.git] / input / lsr / redefining-grace-note-global-defaults.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "rhythms"
7
8 %% Translation of GIT committish: 5a33019d8b4a837f564eadd4979501ff07e9dfd5
9   texidoces = "
10
11 Los valores predeterminados para las notas de adorno están
12 almacenados en los identificadores @code{startGraceMusic},
13 @code{stopGraceMusic}, @code{startAcciaccaturaMusic},
14 @code{stopAcciaccaturaMusic}, @code{startAppoggiaturaMusic} y
15 @code{stopAppoggiaturaMusic}, que están definidos en el archivo
16 @code{ly/grace-init.ly}.  Redefiniéndolos se pueden obtener otros
17 efectos.
18
19 "
20
21   doctitlees = "Redefinición de los valores globales predeterminados para notas de adorno"
22
23
24 %% Translation of GIT committish: 13ac9d1dfbcc297166948ee396e9ade078d2446e
25   texidocde = "
26 Die globalen Standardeinstellungen für Verzierungsnoten werden in
27 den Variablen@code{startGraceMusic}, @code{stopGraceMusic},
28 @code{startAcciaccaturaMusic}, @code{stopAcciaccaturaMusic},
29 @code{startAppoggiaturaMusic} und @code{stopAppoggiaturaMusic}
30 gespeichert, die in der Datei @code{ly/grace-init.ly} definiert
31 sind.  Wenn man sie umdefiniert, können andere Effekte erreicht
32 werden.
33
34 "
35   doctitlede = "Globale Umdefinition von Verzierungsnoten"
36
37   texidoc = "
38 The global defaults for grace notes are stored in the identifiers
39 @code{startGraceMusic}, @code{stopGraceMusic},
40 @code{startAcciaccaturaMusic}, @code{stopAcciaccaturaMusic},
41 @code{startAppoggiaturaMusic} and @code{stopAppoggiaturaMusic}, which
42 are defined in the file @code{ly/grace-init.ly}.  By redefining them
43 other effects may be obtained.
44
45 "
46   doctitle = "Redefining grace note global defaults"
47 } % begin verbatim
48
49 startAcciaccaturaMusic = {
50   s1*0(
51   \override Stem #'stroke-style = #"grace"
52   \slurDashed
53 }
54
55 stopAcciaccaturaMusic = {
56   \revert Stem #'stroke-style
57   \slurSolid
58   s1*0)
59 }
60
61 \relative c'' {
62   \acciaccatura d8 c1
63 }
64