]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/drawing-circles-around-various-objects.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / drawing-circles-around-various-objects.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 \version "2.11.62"
4 \header {
5   lsrtags = "tweaks-and-overrides"
6   texidoc = "
7 The @code{\circle} markup command draws circles around various objects,
8 for example fingering indications. For other objects, specific tweaks
9 may be required: this example demonstrates two strategies for rehearsal
10 marks and measure numbers.
11 "
12   doctitle = "Drawing circles around various objects"
13 } % begin verbatim
14
15 \relative c' {
16   c1
17   \set Score.markFormatter =
18     #(lambda (mark context)
19              (make-circle-markup (format-mark-numbers mark context)))
20   \mark \default
21   c2 d^\markup {
22     \override #'(thickness . 3) {
23       \circle \finger 2
24     }
25   }
26   \override Score.BarNumber #'break-visibility = #all-visible
27   \override Score.BarNumber #'stencil =
28     #(make-stencil-circler 0.1 0.25 ly:text-interface::print)
29 }