]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-the--tweak-command-to-tweak-individual-grobs.ly
Merge branch 'metronome'
[lilypond.git] / Documentation / snippets / using-the--tweak-command-to-tweak-individual-grobs.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.31"
5
6 \header {
7   lsrtags = "tweaks-and-overrides"
8
9   texidoc = "
10 With the @code{\\tweak} command, every grob can be tuned directly.
11 Here are some examples of available tweaks.
12
13 "
14   doctitle = "Using the \\tweak command to tweak individual grobs"
15 } % begin verbatim
16
17 \relative c' {
18   \time 2/4
19   \set fingeringOrientations = #'(right)
20   <
21     \tweak #'font-size #3 c
22     \tweak #'color #red d-\tweak #'font-size #8 -4
23     \tweak #'style #'cross g
24     \tweak #'duration-log #2 a
25   >2
26 }
27