]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-the--tweak-command-to-tweak-individual-grobs.ly
671c93e758e2edb79a7c2688b0a0435e10e0c791
[lilypond.git] / Documentation / snippets / using-the--tweak-command-to-tweak-individual-grobs.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "really-simple, tweaks-and-overrides"
11
12 %% Translation of GIT committish: d5307870fe0ad47904daba73792c7e17b813737f
13   texidocfr = "
14 La commande @code{\\tweak} permet de retoucher directement n'importe
15 quel objet graphique.  En voici quelques exemples :
16
17 "
18   doctitlefr = "Utilisation de \\tweak pour retoucher des objets particuliers"
19
20   texidoc = "
21 With the @code{\\tweak} command, every grob can be tuned directly.
22 Here are some examples of available tweaks.
23
24 "
25   doctitle = "Using the \\tweak command to tweak individual grobs"
26 } % begin verbatim
27
28
29 \relative c' {
30   \time 2/4
31   \set fingeringOrientations = #'(right)
32   <
33     \tweak #'font-size #3 c
34     \tweak #'color #red d-\tweak #'font-size #8 -4
35     \tweak #'style #'cross g
36     \tweak #'duration-log #2 a
37   >2
38 }
39