Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1276)

Delta Between Two Patch Sets: Documentation/snippets/new/redefining-grace-note-global-defaults.ly

Issue 6635050: Make arguments like Context.GrobName accessible as symbol lists (Closed) Base URL: http://git.savannah.gnu.org/gitweb/?p=lilypond.git/trunk/
Left Patch Set: Created 12 years, 5 months ago
Right Patch Set: Allow \override Accidental.color = #red (dot between grob and property) Created 12 years, 5 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
LEFTRIGHT
(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
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b