]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tweaks-as-overrides.ly
Doc: NR add @knownissues for Percent Repeats
[lilypond.git] / input / regression / tweaks-as-overrides.ly
1 \version "2.19.24"
2
3 \header {
4   texidoc = "@code{\\tweak} commands can be used to effect overrides
5 when given a symbol list as argument.  Such overrides can be the
6 target of another tweak, with the tweaks accumulating.  This example
7 should show the starting chord with blue, cross-styled note heads
8 and a red stem."
9 }
10
11 \layout { ragged-right = ##t }
12
13 {
14   \once \tweak Stem.color #red
15   \tweak color #blue
16   \tweak style #'cross NoteHead
17   <c' e'>2 c'2
18 }