]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/drawing-boxes-around-grobs.ly
Update LSR with new tags
[lilypond.git] / input / lsr / drawing-boxes-around-grobs.ly
1 %% Do not edit this file; it is auto-generated from LSR!
2 %% Tags: other
3 \version "2.11.35"
4
5 \header { texidoc = "
6 The @code{print-function} can be overridden to draw a box around an
7 arbitrary  grob.  
8 " }
9 % begin verbatim
10 \relative c''  {
11
12   \override TextScript  #'stencil =
13   #(make-stencil-boxer 0.1 0.3 ly:text-interface::print)
14
15   c'4^"foo"
16
17   \override Stem  #'stencil =
18   #(make-stencil-boxer 0.05 0.25 ly:stem::print)
19
20   \override Score.RehearsalMark  #'stencil =
21   #(make-stencil-boxer 0.15 0.3 ly:text-interface::print)
22   b8
23   \revert Stem #'stencil
24
25
26   c4. c4 \mark "F" c1
27 }
28
29