LEFT | RIGHT |
(no file at all) | |
1 \version "2.16.0" | 1 \version "2.17.6" |
2 | 2 |
3 \header { | 3 \header { |
4 lsrtags = "rhythms" | 4 lsrtags = "rhythms" |
5 | 5 |
6 texidoc = " | 6 texidoc = " |
7 The global defaults for grace notes are stored in the identifiers | 7 The global defaults for grace notes are stored in the identifiers |
8 @code{startGraceMusic}, @code{stopGraceMusic}, | 8 @code{startGraceMusic}, @code{stopGraceMusic}, |
9 @code{startAcciaccaturaMusic}, @code{stopAcciaccaturaMusic}, | 9 @code{startAcciaccaturaMusic}, @code{stopAcciaccaturaMusic}, |
10 @code{startAppoggiaturaMusic} and @code{stopAppoggiaturaMusic}, which | 10 @code{startAppoggiaturaMusic} and @code{stopAppoggiaturaMusic}, which |
11 are defined in the file @code{ly/grace-init.ly}. By redefining them | 11 are defined in the file @code{ly/grace-init.ly}. By redefining them |
12 other effects may be obtained. | 12 other effects may be obtained. |
13 | 13 |
14 " | 14 " |
15 doctitle = "Redefining grace note global defaults" | 15 doctitle = "Redefining grace note global defaults" |
16 } | 16 } |
17 | 17 |
18 startAcciaccaturaMusic = { | 18 startAcciaccaturaMusic = { |
19 <>( | 19 <>( |
20 \override Flag #'stroke-style = #"grace" | 20 \override Flag.stroke-style = #"grace" |
21 \slurDashed | 21 \slurDashed |
22 } | 22 } |
23 | 23 |
24 stopAcciaccaturaMusic = { | 24 stopAcciaccaturaMusic = { |
25 \revert Flag #'stroke-style | 25 \revert Flag.stroke-style |
26 \slurSolid | 26 \slurSolid |
27 <>) | 27 <>) |
28 } | 28 } |
29 | 29 |
30 \relative c'' { | 30 \relative c'' { |
31 \acciaccatura d8 c1 | 31 \acciaccatura d8 c1 |
32 } | 32 } |
33 | 33 |
LEFT | RIGHT |