1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
7 lsrtags
= "editorial-annotations, tweaks-and-overrides"
10 The @code{\\circle} markup command draws circles around various
11 objects, for example fingering indications. For other objects,
12 specific tweaks may be required: this example demonstrates two
13 strategies for rehearsal marks and measure numbers.
16 doctitle
= "Drawing circles around various objects"
21 \set Score
.markFormatter
=
22 #(lambda
(mark context
)
23 (make-circle-markup
(format-mark-numbers mark context
)))
26 \override #'(thickness
. 3) {
30 \override Score
.BarNumber
#'break-visibility
= #all-visible
31 \override Score
.BarNumber
#'stencil
=
32 #(make-stencil-circler
0.1 0.25 ly
:text-interface
::print
)