]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/drawing-boxes-around-grobs.ly
Doc-es: pre-merge update of texidoc committishes.
[lilypond.git] / input / lsr / drawing-boxes-around-grobs.ly
index 96739ce4940a6a6306e0c20013730b01b10188ce..cf4cfdd2033c1b2434ea91ca749de9971678e0c3 100644 (file)
@@ -1,27 +1,30 @@
 %% Do not edit this file; it is auto-generated from input/new
 %% This file is in the public domain.
-\version "2.11.38"
-\layout { ragged-right= ##t }
+%% Note: this file works from version 2.12.0
+\version "2.12.0"
 \header {
   lsrtags = "tweaks-and-overrides"
   texidoc = "
 The @code{print-function} can be overridden to draw a box around an
-arbitrary grob.  
+arbitrary grob.
 "
   doctitle = "Drawing boxes around grobs"
 } % begin verbatim
 
+
 \relative c'' {
-  \override TextScript  #'stencil =
-  #(make-stencil-boxer 0.1 0.3 ly:text-interface::print)
+  \override TextScript #'stencil =
+    #(make-stencil-boxer 0.1 0.3 ly:text-interface::print)
   c'4^"foo"
 
-  \override Stem  #'stencil =
-  #(make-stencil-boxer 0.05 0.25 ly:stem::print)
+  \override Stem #'stencil =
+    #(make-stencil-boxer 0.05 0.25 ly:stem::print)
   \override Score.RehearsalMark  #'stencil =
-  #(make-stencil-boxer 0.15 0.3 ly:text-interface::print)
+    #(make-stencil-boxer 0.15 0.3 ly:text-interface::print)
   b8
   
   \revert Stem #'stencil
-  c4. c4 \mark "F" c1
+  c4. c4
+  \mark "F"
+  c1
 }