Hi Marten,

2013/12/7 Marten Visser <msvis...@planet.nl>:
> Phil Holmes <mail <at> philholmes.net> writes:
>
>>
>> "Marten Visser" <msvisser <at> planet.nl> wrote in message
>> news:loom.20131207T144955-756 <at> post.gmane.org...
>> > Somewhat, see below.
>> >
>>
>> Is that honestly the smallest you can make an example?  It seems
> extremely
>> long and quite complex to count as tiny.
>>
>
> Of course you can have 50% at half the price:

??
The _only_ interesting thing is the bug if any!

>
> ==================================================
> %CueVoiceTextError
>
> \version "2.16.2"
>
> staffNotes = {
>         <<as1 \new CueVoice = "DutchSpecificOne" { as2. f8[ f] }>> |
>         \noBreak
>         f2. bes,4 }
>
> StanzaOneHebrewTrans = \lyricmode {
>         jal ta' -- a -- rog
> }
>
> StanzaOneDutch = \lyricmode {
>         \set associatedVoice = #"DutchSpecificOne" hert dat
>         \set associatedVoice = #"Melody" ver -- langt en dorst
> }
>
> \score {
>         <<
>                 \new Staff {
>                         \key c \minor
>                         \new Voice = "Melody" { \relative c'' \staffNotes }
>                         \addlyrics {\StanzaOneHebrewTrans}
>                         \addlyrics {\StanzaOneDutch}
>                 }
>         >>
>         \layout {}
> }
> ==================================================
>
> I'd much appreciate a workaround (solving bugs takes time, I know), so that
> the text of the second stanza will become visible after the CueVoice.


The problem seems to be \addlyrics, works only with 'Voice. Use \new
Lyrics as shown below.


2013/12/7 Marten Visser <msvis...@planet.nl>:

> Also, the log file complains about:
> D:/Marten/Muziek/Bladmuziek/Lilypond/CueVoiceTextError.ly:45:32: warning:
> unterminated hyphen; removing
>         K' -- a -- jal ta' -- a
>                                 -- rog

That's because there was now note for "rog"

\version "2.16.2"

staffNotes =
\new Voice = "M" \relative c'' {
        << \voiceTwo a1 \new CueVoice = "D" { \voiceOne a2. a8 a } >>
        \oneVoice
        a2 a2
        a1 %% added
}

StanzaOneHebrewTrans = \lyricmode {
        jal ta' -- a -- rog
}

StanzaOneDutch = \lyricmode {
        \set associatedVoice = #"D" hert dat
        \set associatedVoice = #"M" ver -- langt en dorst
}

<<
  \new Staff \staffNotes
  \new Lyrics \lyricsto "M" \StanzaOneHebrewTrans
  \new Lyrics \lyricsto "M" \StanzaOneDutch
>>

Cheers,
  Harm

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

Reply via email to