]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/redefining-grace-note-global-defaults.ly
LSR: Update.
[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.12.3"
4
5 \header {
6   lsrtags = "rhythms"
7
8   texidoc = "
9 The global defaults for grace notes are stored in the identifiers
10 @code{startGraceMusic}, @code{stopGraceMusic},
11 @code{startAcciaccaturaMusic}, @code{stopAcciaccaturaMusic},
12 @code{startAppoggiaturaMusic} and @code{stopAppoggiaturaMusic}, which
13 are defined in the file @code{ly/grace-init.ly}.  By redefining them
14 other effects may be obtained.
15
16 "
17   doctitle = "Redefining grace note global defaults"
18 } % begin verbatim
19
20 startAcciaccaturaMusic = {
21   s1*0(
22   \override Stem #'stroke-style = #"grace"
23   \slurDashed
24 }
25
26 stopAcciaccaturaMusic = {
27   \revert Stem #'stroke-style
28   \slurSolid
29   s1*0)
30 }
31
32 \relative c'' {
33   \acciaccatura d8 c1
34 }
35