X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fchanging--flageolet-mark-size.ly;fp=Documentation%2Fsnippets%2Fchanging--flageolet-mark-size.ly;h=cf0f664d5a86dce944171d2ba5dc0d9a3cd82a64;hb=e90f0536f9be39ada0bef0aeb0d275dec3b2fb5b;hp=0000000000000000000000000000000000000000;hpb=a8c9e8a7ca320ab0df5fd32e717fd62cd7635ce6;p=lilypond.git diff --git a/Documentation/snippets/changing--flageolet-mark-size.ly b/Documentation/snippets/changing--flageolet-mark-size.ly new file mode 100644 index 0000000000..cf0f664d5a --- /dev/null +++ b/Documentation/snippets/changing--flageolet-mark-size.ly @@ -0,0 +1,60 @@ +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.dsi.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% +%% This file is in the public domain. +\version "2.14.0" + +\header { + lsrtags = "expressive-marks, unfretted-strings" + +%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c + texidoces = " +Para hacer más pequeño el círculo de @code{\\flageolet} (armónico) +utilice la siguiente función de Scheme. + +" + doctitlees = "Cambiar el tamaño de la marca de \\flageolet" + + +%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 + texidocde = " +Um den @code{\\flageolet}-Kreis kleiner zu machen, kann diese +Scheme-Funktion eingesetzt werden. + +" + doctitlede = "\\flageolet-Zeichen verkleinern" + +%% Translation of GIT committish: 5b980ee07bba23d3633de1d371fb2926f164e295 + + texidocfr = " +Il est possible de rapetisser le cercle d'un @code{\\flageolet} grâce +à une fonction Scheme. + +" + doctitlefr = "Modifier la taille d'un \\flageolet" + + + texidoc = " +To make the @code{\\flageolet} circle smaller use the following Scheme +function. + +" + doctitle = "Changing \\flageolet mark size" +} % begin verbatim + +smallFlageolet = +#(let ((m (make-articulation "flageolet"))) + (set! (ly:music-property m 'tweaks) + (acons 'font-size -3 + (ly:music-property m 'tweaks))) + m) + +\layout { ragged-right = ##f } + +\relative c'' { + d4^\flageolet_\markup { default size } d_\flageolet + c4^\smallFlageolet_\markup { smaller } c_\smallFlageolet +} +