1%% DO NOT EDIT this file manually; it is automatically
2%% generated from LSR http://lsr.di.unimi.it
3%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4%% and then run scripts/auxiliar/makelsr.py
5%%
6%% This file is in the public domain.
7\version "2.23.2"
8
9\header {
10  lsrtags = "editorial-annotations"
11
12  texidoc = "
13Here is how to circle a note.
14
15"
16  doctitle = "Drawing circles around note heads"
17} % begin verbatim
18
19
20circle =
21\once \override NoteHead.stencil = #(lambda (grob)
22    (let* ((note (ly:note-head::print grob))
23           (combo-stencil (ly:stencil-add
24               note
25               (circle-stencil note 0.1 0.8))))
26          (ly:make-stencil (ly:stencil-expr combo-stencil)
27            (ly:stencil-extent note X)
28            (ly:stencil-extent note Y))))
29
30{ \circle c'' }
31