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