lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Voice Context Continuing After Lyrics Were Added and Ended


From: -Eluze
Subject: Re: Voice Context Continuing After Lyrics Were Added and Ended
Date: Wed, 2 Nov 2011 15:56:36 -0700 (PDT)


Christian Eitner wrote:
> 
> I'm having trouble understanding how a voice to which lyrics were
> added is continued after the lyrics. Here is my snippet:
> 
> \version "2.12.2"
> 
> \new Staff {
>       \new Voice = melody {
>               a'1
>       }
>       <<
>       \context Voice = "melody" {
>               b'1
>       }
>       \new Lyrics \lyricsto "melody" {
>               Ahh
>       }
>       >>
>       \context Voice = "melody" {
>               c'1 d1
>       }
> }
> 
> Instead of c'1 d1, only two empty bars appear.
> 
use associatedVoice instead of \lyricsto

\new Staff {
  \new Voice = "melody" \relative {
    a'1  
    << 
      \context Voice = "melody" b
      \context Lyrics = "lyr" \with {associatedVoice = "melody"} \lyricmode
{ Ahh } 
    >> 
    c1 d1 
  }
}

there's a bug somewhere, but i can't explain exactly
Eluze
-- 
View this message in context: 
http://old.nabble.com/Voice-Context-Continuing-After-Lyrics-Were-Added-and-Ended-tp32768871p32769527.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]