]> git.donarmstrong.com Git - lilypond.git/blob - input/new/other/drawing-boxes-around-grobs.ly
7a4400292bafc2277fa992d9dd60900c80640a51
[lilypond.git] / input / new / other / drawing-boxes-around-grobs.ly
1 \version "2.11.23"
2
3 \header { texidoc = "
4 The @code{print-function} can be overridden to draw a box around an
5 arbitrary  grob.  
6 " }
7
8 \relative c''  {
9
10   \override TextScript  #'stencil =
11   #(make-stencil-boxer 0.1 0.3 ly:text-interface::print)
12
13   c'4^"foo"
14
15   \override Stem  #'stencil =
16   #(make-stencil-boxer 0.05 0.25 ly:stem::print)
17
18   \override Score.RehearsalMark  #'stencil =
19   #(make-stencil-boxer 0.15 0.3 ly:text-interface::print)
20   b8
21   \revert Stem #'stencil
22
23
24   c4. c4 \mark "F" c1
25 }
26
27