Status: Accepted
Owner: v.villenave
Labels: Type-Defect Priority-Medium

New issue 770 by v.villenave: Lyrics behave differently when associated to a Voice-derived context
http://code.google.com/p/lilypond/issues/detail?id=770

% new report from Reinhold:

% For Voice-derived contexts, lyrics start one note too late!
% In particular, if you use CueVoice instead of voice (or our own CVoice
% defined above), lyrics will be off by 1 note.

\version "2.13.0"

\layout {
  \context{ \Voice
    \name CVoice
    \alias Voice
  }
  \context {
    \Staff
    \accepts CVoice
  }
}

\score {
  \new Staff <<
    \new Voice \relative c'' {
      g2 g2
      <<
          { \voiceOne R1 }
          \new CVoice = "cue" { \voiceTwo g4 g g g }
      >>
      g2 g2
      <<
          { \voiceOne R1 }
          \context Voice = "cue1" { \voiceTwo g4 g g g }
      >>
      g2 g2
      <<
          { \voiceOne R1 }
          \new CueVoice = "cue2" { \voiceTwo g4 g g g }
      >>
      g2 g2
  }
  \context Lyrics \lyricsto "cue" { do re mi fa }
  \context Lyrics \lyricsto "cue1" { do re mi fa }
  \context Lyrics \lyricsto "cue2" { do re mi fa }
  >>
}


--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings


_______________________________________________
bug-lilypond mailing list
bug-lilypond@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to