]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/using-the--tweak-command-to-tweak-individual-grobs.ly
Merge branch 'master' of /home/jcharles/GIT/Lily/. into translation
[lilypond.git] / Documentation / snippets / using-the--tweak-command-to-tweak-individual-grobs.ly
index 9a218f15013a986c7a5f3f2d478568edc32377c7..8f1fcc8b7e8874b5aa8997432c232d99ff5e975d 100644 (file)
@@ -1,26 +1,30 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.1"
+\version "2.17.11"
 
 \header {
-  lsrtags = "tweaks-and-overrides"
+  lsrtags = "really-simple, tweaks-and-overrides"
 
   texidoc = "
-With the @code{\\tweak} command, every grob can be tuned directly. 
+With the @code{\\tweak} command, every grob can be tuned directly.
 Here are some examples of available tweaks.
 
 "
   doctitle = "Using the \\tweak command to tweak individual grobs"
 } % begin verbatim
 
+
 \relative c' {
   \time 2/4
   \set fingeringOrientations = #'(right)
   <
-    \tweak #'font-size #3 c
-    \tweak #'color #red d-\tweak #'font-size #8 -4
-    \tweak #'style #'cross g
-    \tweak #'duration-log #2 a
+    \tweak font-size #3 c
+    \tweak color #red d-\tweak font-size #8 -4
+    \tweak style #'cross g
+    \tweak duration-log #2 a
   >2
 }
-