]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/drawing-circles-around-various-objects.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / lsr / drawing-circles-around-various-objects.ly
index 82efc69677be325d2d493bede8661aee362f9b14..1d16c2fcc8184e8975d4f7d882f2154b4d5326d8 100644 (file)
@@ -1,25 +1,28 @@
-%% Do not edit this file; it is auto-generated from LSR!
-%% Tags: other
-\version "2.11.35"
-
-\header { texidoc = "
-The \circle command allows you to draw circles around various objects
-(for example fingering indications). However, some objects require
-specific tweaks: rehearsal marks depend on the Score.markFormatter
-context, bar numbers on the Score.BarNumber context, and so on.
+%% Do not edit this file; it is auto-generated from input/new
+%% This file is in the public domain.
+\version "2.11.51"
+\header {
+  lsrtags = "tweaks-and-overrides"
+  texidoc = "
+The @code{\circle} command allows you to draw circles around various objects,
+for example fingering indications. However, some objects require
+specific tweaks: rehearsal marks depend on the @code{Score.markFormatter}
+context, bar numbers on the @code{Score.BarNumber} context, and so on.
 
 You can tweak the printing of your circles by setting some properties
-such as #'thickness, #'circle-padding or #'font-size.
-" }
-% begin verbatim
-\relative c'{
-c1
-\set Score.markFormatter
-  = #(lambda (mark context)
+such as @code{#'thickness}, @code{#'circle-padding} or @code{#'font-size}.
+"
+  doctitle = "Drawing circles around various objects"
+} % begin verbatim
+
+\relative c' {
+  c1
+  \set Score.markFormatter =
+    #(lambda (mark context)
              (make-circle-markup (format-mark-numbers mark context)))
-\mark \default
-c2 d^\markup{\circle \finger "2"}
-\override Score.BarNumber #'break-visibility = #all-visible
-\override Score.BarNumber  #'stencil
-  = #(make-stencil-circler 0.1 0.25 ly:text-interface::print)
+  \mark \default
+  c2 d^\markup { \circle \finger 2 }
+  \override Score.BarNumber #'break-visibility = #all-visible
+  \override Score.BarNumber  #'stencil =
+    #(make-stencil-circler 0.1 0.25 ly:text-interface::print)
 }