]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/new/using-the--tweak-command-to-tweak-individual-grobs.ly
Merge master into nested-bookparts
[lilypond.git] / input / new / using-the--tweak-command-to-tweak-individual-grobs.ly
index 6573543ea8362219f65c9968fa643bf4177368b2..b6981653acdf5e51d0ae39c08ef925a15e3cadc9 100644 (file)
@@ -1,20 +1,20 @@
-\version "2.11.23"
-\layout { ragged-right= ##t }
+\version "2.11.61"
 \header {
   lsrtags = "tweaks-and-overrides"
   texidoc = "
-With the @code{\tweak} command, you can tune every grob directly. Here
+With the @code{\\tweak} command, every grob can be tuned directly.  Here
 are some examples of available tweaks.
 "
-  doctitle = "Using the @code{\tweak} command to tweak individual grobs"
+  doctitle = "Using the @code{\\tweak} command to tweak individual grobs"
 }
 
-{
+\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 # a
-  >4
+    \tweak #'font-size #3 c
+    \tweak #'color #red d-\tweak #'font-size #8 -4
+    \tweak #'style #'cross g
+    \tweak #'duration-log #2 a
+  >2
 }