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