X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fchanging--flageolet-mark-size.ly;h=5e48340b054469adb8bd59e998046bdf9f8ca02c;hb=f86f00c1a8de0f034ba48506de2801c074bd5422;hp=1ed164a0d0390ed8a40aa0fe0c50174888f3fb01;hpb=3d8089a42af6304edb8dad56220e845c84832bb2;p=lilypond.git diff --git a/Documentation/snippets/changing--flageolet-mark-size.ly b/Documentation/snippets/changing--flageolet-mark-size.ly index 1ed164a0d0..5e48340b05 100644 --- a/Documentation/snippets/changing--flageolet-mark-size.ly +++ b/Documentation/snippets/changing--flageolet-mark-size.ly @@ -1,11 +1,15 @@ -%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it +%% 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.13.1" +\version "2.12.2" \header { lsrtags = "expressive-marks, unfretted-strings" -%% Translation of GIT committish: dff50e8e1d3134657a6b6203b9c93826dc4cef65 +%% Translation of GIT committish: 91eeed36c877fe625d957437d22081721c8c6345 texidoces = " Para hacer más pequeño el círculo de @code{\\flageolet} (armónico) utilice la siguiente función de Scheme. @@ -13,16 +17,8 @@ utilice la siguiente función de Scheme. " doctitlees = "Cambiar el tamaño de la marca de \\flageolet" -%% Translation of GIT committish: 0099693675b95c7ec6664d7277f22411a14e9c1b - texidocfr = " -Il est possible de rapetisser le cercle d'un @code{\\flageolet} grâce -à une fonction Scheme. - -" - doctitlefr = "Modifier la taille d'un \\flageolet" - -%% Translation of GIT committish: 33f623301a41fcc53efadf96bca1c72834763415 +%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 texidocde = " Um den @code{\\flageolet}-Kreis kleiner zu machen, kann diese Scheme-Funktion eingesetzt werden. @@ -30,21 +26,30 @@ 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. +function. " doctitle = "Changing \\flageolet mark size" } % begin verbatim smallFlageolet = -#(let ((m (make-music 'ArticulationEvent - 'articulation-type "flageolet"))) - (ly:music-set-property! m 'tweaks - (acons 'font-size -3 - (ly:music-property m 'tweaks))) - m) +#(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 }