Quotes (and cues) are special.

I guess you could see them as a tape playback. When you request a
portion to be quoted, LilyPond gets the reel and rolls back the music
up to that quote and then starts the actual quoting. So, in your
example, you were actually quoting measure 2 of \oboeB which is empty
or non existent. I hope this makes sense.

You need to keep them in sync for them to quote the good stuff at the
right time.

violin = {
    \violinA
    \violinB
}
\addQuote "violin"

I use quotes extensively for stuff like dynamics and what not which
often resembles as :
hornDynamics = {
s1*32 |
s1\< <>\! |
}
\addQuote "hornDynamics" \hornDynamics

Does that make things clearer for you ?
Quotes can be quite funky.
--
Pierre-Luc Gauthier

Le sam. 10 avr. 2021 à 14:13, N Trocado <[email protected]> a écrit :
>
> What's wrong with the snippet bellow? It doesn't print the cue notes, unless 
> I remove \fluteA and \oboeA.
>
> \version "2.19.55"
>
> fluteA = {
>   r1
> }
>
> oboeA = {
>   r1
> }
>
> fluteB = {
>   \cueDuring #"oboeB" #DOWN { R1 }
> }
>
> oboeB = {
>   c4 c c c
> }
>
> \addQuote "oboeB" { \oboeB }
>
> \score{
>   <<
>   \new Staff { \fluteA \fluteB }
>   \new Staff { \oboeA \oboeB }
>   >>
> }
>


-- 
Pierre-Luc Gauthier

Reply via email to