]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/using-the--tweak-command-to-tweak-individual-grobs.ly
Doc-es: pre-merge update of texidoc committishes.
[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 %% Note: this file works from version 2.12.0
4 \version "2.12.0"
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
15 \relative c' {
16   \time 2/4
17   \set fingeringOrientations = #'(right)
18   <
19     \tweak #'font-size #3 c
20     \tweak #'color #red d-\tweak #'font-size #8 -4
21     \tweak #'style #'cross g
22     \tweak #'duration-log #2 a
23   >2
24 }