lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Ritardando and accelerando


From: Noeck
Subject: Re: Ritardando and accelerando
Date: Tue, 27 Jan 2015 07:27:02 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0

> Yes, I would love to have command like this! That would be really nice.

Hi,

I tried this, but unfortunately it does not work:

\version "2.18.2"

startText = #(define-music-function (parser location text notes)(markup? 
ly:music?)
   #{
     \override TextSpanner.bound-details.left.text =  #text
     #notes
     \startTextSpan
   #})
stopText = \stopTextSpan


\relative {
  \startText "rit"
  b1 c
  e,\stopText
}

I don’t know why. The \startTextSpan in the music-function causes this error:
syntax error, unexpected EVENT_IDENTIFIER


This works, however it is only half way to the solution:

startText = #(define-music-function (parser location text)(markup?)
   #{ \override TextSpanner.bound-details.left.text =  #text #})

\relative {
  \startText "rit"
   b1 \startTextSpan c
  e,\stopTextSpan
}

Cheers,
Joram



reply via email to

[Prev in Thread] Current Thread [Next in Thread]