Hello everyone.
think cue notes behave a little differently when I use the library "
arranger.ly"
.
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?
\version "2.22.2"
\include "arranger.ly"
global = {
\time 4/4
s1*2
\bar"|."
} % Ende global
all = #'(instone insttwo)
#(init all)
instoneabI = {
\relative c''{c2\f d4->\> e8 ( f)\! a,4.. b16 c2 }
}
insttwoabII = { \relative c'{f4 d e2} }
\addQuote "one" \instone
% the score
#(begin
(rm 'instone 1 instoneabI )
(rm 'insttwo 2 insttwoabII )
)
\score { <<
\new Devnull \global
\instone
\insttwo
>>
}
#(begin
(add-voice1 'insttwo 1
(adef (em instone 1 2) "(one)" UP))
)
\score {
<<
\new Devnull \global
\new Staff \insttwo
>>
}