[ << Editorial annotations ] | [Top][Contents] | [ Text >> ] |
[ < Different font size settings for instrumentName and shortInstrumentName ] | [ Up : Editorial annotations ] | [ 符頭の周りを円で囲む > ] |
Grob の周りにボックスを表示する
任意の Grob の周りにボックスを表示するために、print-function
をオーバライドすることができます。
\relative c'' { \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 Score.RehearsalMark.stencil = #(make-stencil-boxer 0.15 0.3 ly:text-interface::print) b8 \revert Stem.stencil \revert Flag.stencil c4. c4 \mark \default c1 }