Dear Gilles, thanks, it works perfectly. But I would like ask one more question: how could I integrate a clef change in the cue-notes? Best, Stefan
Am Mo., 7. Juli 2025 um 00:34 Uhr schrieb Gilles Thibault <[email protected] >: > > > Basically it works, but in the example below I would like to quote the > > upper part without dynamics, articulation, slurs, etc.. > > How could that work? > > Hello. > Well, i don't used \Quote anymore with "arranger.ly," because you not > really need it with the function adef. > You can trim the event you don't want during quoting by the following > way: > > #(define my-del (set-del-events '(AbsoluteDynamicEvent ArticulationEvent > CrescendoEvent DecrescendoEvent SlurEvent))) > #(begin > (add-voice1 'insttwo 1 (adef (my-del (em instone 1 2)) "(one)" UP)) > ) > > Il you want apply my-del to all your quotes, you can define a personal > adef function > > #(define my-del (set-del-events '(AbsoluteDynamicEvent ArticulationEvent > CrescendoEvent DecrescendoEvent SlurEvent))) > #(define (my-adef music . others) > (apply adef (my-del music) others)) > #(begin > (add-voice1 'insttwo 1 (my-adef (em instone 1 2) "(one)" UP)) > ) > > > -- > Gilles
