X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fdrawing-circles-around-various-objects.ly;h=a86e85f2374e1845702b04950f7a19df5e980269;hb=08c1ead90d9f49e66ce54208639fb9ef48ca52a6;hp=24b477a90b4d087f3f37ca30a27eb3df5dc7d25f;hpb=69f0ec479a6ade46d0a227755bb02562112c6743;p=lilypond.git diff --git a/Documentation/snippets/drawing-circles-around-various-objects.ly b/Documentation/snippets/drawing-circles-around-various-objects.ly index 24b477a90b..a86e85f237 100644 --- a/Documentation/snippets/drawing-circles-around-various-objects.ly +++ b/Documentation/snippets/drawing-circles-around-various-objects.ly @@ -1,9 +1,13 @@ -%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it +%% DO NOT EDIT this file manually; it is automatically +%% 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.13.1" +\version "2.18.0" \header { - lsrtags = "editorial-annotations, tweaks-and-overrides" + lsrtags = "editorial-annotations, scheme-language, tweaks-and-overrides" texidoc = " The @code{\\circle} markup command draws circles around various @@ -21,12 +25,13 @@ strategies for rehearsal marks and measure numbers. #(lambda (mark context) (make-circle-markup (format-mark-numbers mark context))) \mark \default + c2 d^\markup { \override #'(thickness . 3) { \circle \finger 2 } } - \override Score.BarNumber #'break-visibility = #all-visible - \override Score.BarNumber #'stencil = + \override Score.BarNumber.break-visibility = #all-visible + \override Score.BarNumber.stencil = #(make-stencil-circler 0.1 0.25 ly:text-interface::print) }