]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing--flageolet-mark-size.ly
LSR: Update.
[lilypond.git] / Documentation / snippets / changing--flageolet-mark-size.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "expressive-marks, unfretted-strings"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 Para hacer más pequeño el círculo de @code{\\flageolet} (armónico)
12 utilice la siguiente función de Scheme.
13
14 "
15   doctitlees = "Cambiar el tamaño de la marca de \\flageolet"
16
17
18 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19   texidocde = "
20 Um den @code{\\flageolet}-Kreis kleiner zu machen, kann diese
21 Scheme-Funktion eingesetzt werden.
22
23 "
24   doctitlede = "\\flageolet-Zeichen verkleinern"
25
26 %% Translation of GIT committish: 0099693675b95c7ec6664d7277f22411a14e9c1b
27
28   texidocfr = "
29 Il est possible de rapetisser le cercle d'un @code{\\flageolet} grâce
30 à une fonction Scheme.
31
32 "
33   doctitlefr = "Modifier la taille d'un \\flageolet"
34
35
36   texidoc = "
37 To make the @code{\\flageolet} circle smaller use the following Scheme
38 function.
39
40 "
41   doctitle = "Changing \\flageolet mark size"
42 } % begin verbatim
43
44 smallFlageolet =
45 #(let ((m (make-music 'ArticulationEvent
46                       'articulation-type "flageolet")))
47    (ly:music-set-property! m 'tweaks
48      (acons 'font-size -3
49        (ly:music-property m 'tweaks)))
50   m)
51
52 \layout { ragged-right = ##f }
53
54 \relative c'' {
55   d4^\flageolet_\markup { default size } d_\flageolet
56   c4^\smallFlageolet_\markup { smaller } c_\smallFlageolet
57 }
58