]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing--flageolet-mark-size.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "expressive-marks, unfretted-strings"
7
8   texidoces = "
9 Para hacer más pequeño el círculo de @code{\\flageolet} (armónico)
10 utilice la siguiente función de Scheme.
11
12 "
13   doctitlees = "Cambiar el tamaño de la marca de \\flageolet"
14
15   texidoc = "
16 To make the @code{\\flageolet} circle smaller use the following Scheme
17 function. 
18
19 "
20   doctitle = "Changing \\flageolet mark size"
21 } % begin verbatim
22 smallFlageolet = #(let ((m (make-music 'ArticulationEvent
23                           'articulation-type "flageolet")))
24        (set! (ly:music-property m 'tweaks)
25              (acons 'font-size -3
26                     (ly:music-property m 'tweaks)))
27        m)
28
29 \layout { ragged-right = ##f }
30
31 \relative c'' {
32   d4^\flageolet_\markup { default size } d_\flageolet
33   c4^\smallFlageolet_\markup { smaller } c_\smallFlageolet
34 }