]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing--flageolet-mark-size.ly
Merge branch 'lilypond/translation' of ssh://trettig@git.sv.gnu.org/srv/git/lilypond...
[lilypond.git] / input / lsr / changing--flageolet-mark-size.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.49"
4
5 \header {
6   lsrtags = "expressive-marks, unfretted-strings"
7
8   texidoc = "
9 To make the @code{\\flageolet} circle smaller use the following Scheme
10 function. 
11
12 "
13   doctitle = "Changing \\flageolet mark size"
14 } % begin verbatim
15 smallFlageolet = #(let ((m (make-music 'ArticulationEvent
16                           'articulation-type "flageolet")))
17        (set! (ly:music-property m 'tweaks)
18              (acons 'font-size -3
19                     (ly:music-property m 'tweaks)))
20        m)
21
22 \layout { ragged-right = ##f }
23
24 \relative c'' {
25   d4^\flageolet_\markup { default size } d_\flageolet
26   c4^\smallFlageolet_\markup { smaller } c_\smallFlageolet
27 }