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