Try explicitly naming Voice and LyricVoice contexts. I think the unnamed
contexts are resulting in Lilypond trying to associate lyrics of wordsW with
the notes of voiceM.

Something like this (untested):
%\version "1.3.92"
voiceW = \notes {
        r4. r8 a'8 b'4 c''8 | d''4 c''8 a'8 b'4. g'8
}
voiceM = \notes {
        \property Voice.automaticMelismata = ##t
        b'4. () g'8 a'2 ~ | a'2 s2
}
wordsW = \lyrics { Stand up and stand by our u- nion! }
wordsM = \lyrics { u- nion! }
\score {
        <
          \addlyrics
          \context Staff = W \context Voice = W {       \$voiceW }
          < \context Lyrics = W \context LyricVoice = "W-1" \$wordsW >

          \addlyrics
          \context Staff = M \context Voice = M { \$voiceM }
          < \context Lyrics = M \context LyricVoice = "M-1" \$wordsM >
        >
}

Glen Prideaux

> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of
> [EMAIL PROTECTED]
> Sent: Thursday, 5 October 2000 14:32
> To: Lilypond mail group
> Subject: Melismatic bug
>
>
> Since 1.3.71  I have been seeing the following warning:
>
> warning: Huh? Melismatic note found to have associated lyrics.
>
> I have now both traced it down to a small example (which is attached)
> and see that as a result of this problem the word "and" is
> not properly
> aligned with it's note in this example.  I.E rather than
> being centered
> on the note it is to the right of the note.
>
> Regards,
> Roy Rankin
>



_______________________________________________
Gnu-music-discuss mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/gnu-music-discuss

Reply via email to