Hi Crimson,

It's all about quotes and cues, isn't it, and that's why LilyPond offers
some quote and cue functionality.
With your original note material as a basis, I've set up a fictional mini
score consisting of Violin 1 and Violin 2.
Violin 2 should show Violin 1 cue notes in its part, but the cue notes
should not be shown in the score.

In your parallel music, Voice contexts will be created and therefore, they
cannot just be eliminated by writing \new CueVoice in front of \new Voice.


All this fuzz can be avoided when using LilyPond's quote functionality, see
example:


%%%%%%%%%%%
\version "2.18.2"

violinI = \relative c'' {
  c4 b a g
  f g a b
  <<
    { c4 d e f } \\
    { a,4 b c e }
  >>
  g1
  bis,4 c d e
}
\addQuote "violinIquote" { \violinI }

violinII = \relative c'' {
  c,1 d 
  \cueDuring #"violinIquote" #UP { R1 }
  a1
  \cueDuring #"violinIquote" #UP { R1 }
}



\score {
  \new StaffGroup <<
    \new Staff \with { instrumentName = "Violin 1" } \violinI
    \new Staff \with { instrumentName = "Violin 2" } \killCues \violinII
  >>
  \header { piece = "Full Score" }
}

\score {
  \new Staff \violinII
  \header { piece = "Violin 2 part (with cues)" }
}
%%%%%%%%%%% 

<http://lilypond.1069038.n5.nabble.com/file/t3887/quote-parallel-music.png> 

HTH,
Torsten




--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to