]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/drawing-circles-around-various-objects.ly
fa2043987b7b757de3464247fda2c0cf5bb0bff1
[lilypond.git] / input / lsr / drawing-circles-around-various-objects.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 \version "2.11.35"
3 \layout { ragged-right= ##t }
4 \header {
5   doctitle = "Drawing circles around various objects"
6   lsrtags = "tweaks-and-overrides"
7   texidoc = "
8 The @code{\circle} command allows you to draw circles around various objects,
9 for example fingering indications. However, some objects require
10 specific tweaks: rehearsal marks depend on the @code{Score.markFormatter}
11 context, bar numbers on the @code{Score.BarNumber} context, and so on.
12
13 You can tweak the printing of your circles by setting some properties
14 such as @code{#'thickness}, @code{#'circle-padding} or @code{#'font-size}.
15 " }
16 % begin verbatim
17 \relative c'{
18 c1
19 \set Score.markFormatter
20   = #(lambda (mark context)
21              (make-circle-markup (format-mark-numbers mark context)))
22 \mark \default
23 c2 d^\markup{\circle \finger "2"}
24 \override Score.BarNumber #'break-visibility = #all-visible
25 \override Score.BarNumber  #'stencil
26   = #(make-stencil-circler 0.1 0.25 ly:text-interface::print)
27 }