]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/changing--flageolet-mark-size.ly
Add example of stand-alone markup.
[lilypond.git] / input / lsr / changing--flageolet-mark-size.ly
index f15aaedc36996d320b5b69d7cfdff5692fb18946..3f8ad3251f90b1935e5064ae048971d126868ce0 100644 (file)
@@ -1,19 +1,22 @@
-%% Do not edit this file; it is auto-generated from LSR!
-%% Tags: expressive-marks
-\version "2.11.35"
+%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% This file is in the public domain.
+\version "2.11.38"
 
-\header { texidoc = "
-To make the \\flageolet circle smaller you can use the following scheme
-code (found in the Lilypond-user-archive)
+\header {
+  lsrtags = "expressive-marks"
+ texidoc = "
+To make the @code{\\flageolet} circle smaller you can use the following
+Scheme code. 
 " }
-
-F = #(let ((m (make-music 'ArticulationEvent
+% begin verbatim
+smallFlageolet = #(let ((m (make-music 'ArticulationEvent
                           'articulation-type "flageolet")))
        (set! (ly:music-property m 'tweaks)
              (acons 'font-size -3
                     (ly:music-property m 'tweaks)))
        m)
 
-\relative c'' { d4^\flageolet_\markup {"orginal \flageolet "} d4_\flageolet
-  c4^\F_\markup {smaller } c4_\F 
+\relative c'' {
+  d4^\flageolet_\markup { default size } d4_\flageolet
+  c4^\smallFlageolet_\markup { smaller } c4_\smallFlageolet
 }