X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fcenter-text-below-hairpin-dynamics.ly;fp=input%2Flsr%2Fcenter-text-below-hairpin-dynamics.ly;h=0000000000000000000000000000000000000000;hb=941dff9d2a67080e0dd8474f1e70f0c72ace6424;hp=d0c7d200f177d8085fe6081f0fb4016feb69aa7f;hpb=5a22d6233a39d3164e1ca043244794c268be4ad0;p=lilypond.git diff --git a/input/lsr/center-text-below-hairpin-dynamics.ly b/input/lsr/center-text-below-hairpin-dynamics.ly deleted file mode 100644 index d0c7d200f1..0000000000 --- a/input/lsr/center-text-below-hairpin-dynamics.ly +++ /dev/null @@ -1,49 +0,0 @@ -%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it -%% This file is in the public domain. -\version "2.12.3" - -\header { - lsrtags = "expressive-marks, text" - - texidoces = " -Este ejemplo proporciona una función para tipografiar un regulador -con texto por debajo, como \"molto\" o \"poco\". El ejemplo -ilustra también cómo modificar la manera en que se imprime -normalmente un objeto, utilizando código de Scheme. - -" - doctitlees = "Centrar texto debajo de un regulador" - - texidoc = " -This example provides a function to typeset a hairpin (de)crescendo -with some additional text below it, such as \"molto\" or \"poco\". The -example also illustrates how to modify the way an object is normally -printed, using some Scheme code. - -" - doctitle = "Center text below hairpin dynamics" -} % begin verbatim - -hairpinWithCenteredText = -#(define-music-function (parser location text) (markup?) -#{ - \override Voice.Hairpin #'stencil = #(lambda (grob) - (ly:stencil-aligned-to - (ly:stencil-combine-at-edge - (ly:stencil-aligned-to (ly:hairpin::print grob) X CENTER) - Y DOWN - (ly:stencil-aligned-to (grob-interpret-markup grob $text) X CENTER)) - X LEFT)) -#}) - -hairpinMolto = \hairpinWithCenteredText \markup { \italic molto } -hairpinMore = \hairpinWithCenteredText \markup { \larger moltissimo } - -\layout { ragged-right = ##f } - -\relative c' { - \hairpinMolto - c2\< c\f - \hairpinMore - c2\< c\f -}