X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fdrawing-boxes-around-grobs.ly;h=8059c2d011e34a79c549c3931e003c4a5bb8ce60;hb=d30e3c1c699f5b84424b76ebf0ab944490015886;hp=fd068efd4ef138345d46f15893193987a50df973;hpb=446dc1f3ac9bfff6bfee31de929698b0425da6fe;p=lilypond.git diff --git a/Documentation/snippets/drawing-boxes-around-grobs.ly b/Documentation/snippets/drawing-boxes-around-grobs.ly index fd068efd4e..8059c2d011 100644 --- a/Documentation/snippets/drawing-boxes-around-grobs.ly +++ b/Documentation/snippets/drawing-boxes-around-grobs.ly @@ -1,21 +1,13 @@ %% DO NOT EDIT this file manually; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it +%% generated from LSR http://lsr.di.unimi.it %% Make any changes in LSR itself, or in Documentation/snippets/new/ , %% and then run scripts/auxiliar/makelsr.py %% %% This file is in the public domain. -\version "2.15.40" +\version "2.18.0" \header { - lsrtags = "tweaks-and-overrides, scheme-language, editorial-annotations" - -%% Translation of GIT committish: 30339cb3706f6399c84607426988b25f79b4998c - texidocfr = " -La fonction @code{print} peut se modifier pour obtenir l'encadrement de -n'importe quel objet. - -" - doctitlefr = "Encadrement d'objets" + lsrtags = "editorial-annotations, scheme-language, tweaks-and-overrides" texidoc = " The @code{print-function} can be overridden to draw a box around an @@ -25,25 +17,20 @@ arbitrary grob. doctitle = "Drawing boxes around grobs" } % begin verbatim - \relative c'' { - \override TextScript #'stencil = + \override TextScript.stencil = #(make-stencil-boxer 0.1 0.3 ly:text-interface::print) c'4^"foo" - \override Stem #'stencil = + \override Stem.stencil = #(make-stencil-boxer 0.05 0.25 ly:stem::print) - \override Score.RehearsalMark #'stencil = + \override Score.RehearsalMark.stencil = #(make-stencil-boxer 0.15 0.3 ly:text-interface::print) b8 - \revert Stem #'stencil - - \revert Flag #'stencil + \revert Stem.stencil + \revert Flag.stencil c4. c4 \mark "F" c1 } - - -