2013/4/12 SoundsFromSound <[email protected]>:
> Hello all,
>
> I'm trying to adjust the length (not /size/, per se) of the espressivo
> markings in this particular score and I can't figure out what I'm doing
> wrong.

Hi Ben,

try:

\version "2.17.15"
\language "english"

#(define ((longer-script x) grob)
  (let* ((stil (ly:script-interface::print grob)))
  (ly:stencil-scale stil x 1)))

scaleEspr =
#(define-event-function (parser location x-val)(number?)
#{
        \tweak #'stencil #(longer-script x-val)
        \espressivo
#})

\relative c'' {
  c4 e f\scaleEspr #2 g |
  f e g f |
}

HTH,
  Harm

_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to