]> git.donarmstrong.com Git - lilypond.git/blob - input/new/using-the--tweak-command-to-tweak-individual-grobs.ly
Update ROADMAP
[lilypond.git] / input / new / using-the--tweak-command-to-tweak-individual-grobs.ly
1 \version "2.11.23"
2 \layout { ragged-right= ##t }
3 \header {
4   lsrtags = "tweaks-and-overrides"
5   texidoc = "
6 With the @code{\\tweak} command, every grob can be tuned directly.  Here
7 are some examples of available tweaks.
8 "
9   doctitle = "Using the @code{\tweak} command to tweak individual grobs"
10 }
11
12 \relative c' {
13   \time 2/4
14   \set fingeringOrientations = #'(right)
15   <
16     \tweak #'font-size #3 c
17     \tweak #'color #red  d-\tweak #'font-size #8 -4
18     \tweak #'style #'cross g
19     \tweak #'duration-log #2 a
20   >2
21 }