Aaron Hill <[email protected]> writes:
> On 2020-01-23 8:00 pm, Aaron Hill wrote:
>> %%%%
>> \tag #'cueName <>_\markup \tiny \italic "Bsn."
>> \cueDuring #"bassoon" #DOWN { R1}
>> %%%%
>
> If you need to use instrumentCueName or would simply prefer not to use
> text scripts, then you can do this:
>
> %%%%
> \cueDuring #"bassoon" #DOWN {
> \tag #'cueName \set CueVoice.instrumentCueName = "Bsn."
> R1
> }
> %%%%
>
> If you do this enough, putting it in a music function will make your
> score much more readable:
>
> %%%%
> cueName = #(define-music-function (parser location name) (markup?)
> #{ \tag #'cueName \set CueVoice.instrumentCueName = #name #})
>
> % . . .
In recent 2.19, this should work as
cueName = \tag #'cueName \set CueVoice.instrumentCueName = \etc
and in those versions you can at least leave off the "parser location"
things.
> \cueDuring #"bassoon" #DOWN { \cueName "Bsn." R1 }
> %%%%
--
David Kastrup