]> git.donarmstrong.com Git - lilypond.git/blob - input/new/using-the--tweak-command-to-tweak-individual-grobs.ly
Merge branch 'lilypond/translation' of ssh://trettig@git.sv.gnu.org/srv/git/lilypond...
[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, you can tune every grob directly. Here
7 are some examples of available tweaks.
8 "
9   doctitle = "Using the @code{\tweak} command to tweak individual grobs"
10 }
11
12 {
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 #1  a
19   >4
20 }