On Sun, May 15, 2016 at 4:38 PM, Craig Dabelstein
<craig.dabelst...@gmail.com> wrote:
> I have a score that requires the players to also sing. Can anyone tell me
> how I can get the vocal extender line in the 2nd oboe to stop at the end of
> bar 5?  I've tried both \skip and "  " but neither gives the right output.

Remove the \skip in `oboeIIWordsScore` and change the voice names so
they don't collide. Something like this:

<<
  \new Staff {
    \new Voice = "flutes" { ... }
  }
  \new Lyrics \lysicsto "flutes" { ... }

  \new Staff {
    \new Voice = "oboe1" { ... }
  }
  \new Lyrics \lysicsto "oboe1" { ... }

  \new Staff {
    \new Voice = "oboe2" { ... }
  }
  \new Lyrics \lysicsto "oboe2" { ... }
>>

-----Jay

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

Reply via email to