]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tweaks-as-overrides.ly
Doc-es: version marker for Usage/UPdating.
[lilypond.git] / input / regression / tweaks-as-overrides.ly
1 \version "2.19.25"
2
3 \header {
4   texidoc = "Overrides can be the target of a @code{\\tweak}, with the
5 tweaks accumulating as override.  The main application is for stacking
6 commands implemented in terms of @code{\\propertyTweak}.  This example
7 should show the starting chord with blue, cross-styled note heads and
8 a red stem."
9 }
10
11 \layout { ragged-right = ##t }
12
13 {
14   \once \tweak Stem.color #red
15   \tweak color #blue
16   \override NoteHead.style = #'cross
17   <c' e'>2 c'2
18 }