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 #})
% . . .
\cueDuring #"bassoon" #DOWN { \cueName "Bsn." R1 }
%%%%
-- Aaron Hill