bug-lilypond
[Top][All Lists]
Advanced

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

Re: Obscure melisma fail


From: tisimst
Subject: Re: Obscure melisma fail
Date: Wed, 9 Sep 2015 09:03:50 -0700 (MST)


On 9/8/2015 6:11 PM, simon.albrecht [via Lilypond] wrote:
> Hello,
>
> in the following example Lily fails to recognise the melisma iff
> – there is a second voice (comment it to test)
> – the music is referenced by a variable and not directly inserted in
> \score {} (sic!)
>
> %%%%%%%%%%%%
> \version "2.19.25"
>
> alto = \relative {
>    <<
>      { d'2\melisma e4\melismaEnd cis }
>      \new Voice { \voiceTwo s1 }
>    >>
> }
>
> altText = \lyricmode {
>    side, sit
> }
>
> \score {
>    <<
>      \new Staff \alto
>      \addlyrics \altText
>    >>
> }
>
> % exactly the same, but without using a variable for the music
> \score {
>    <<
>      \new Staff \relative {
>        <<
>          { d'2(\melisma e4)\melismaEnd cis }
>          \new Voice { \voiceTwo s1 }
>        >>
>      }
>      \addlyrics \altText
>    >>
> }
> %%%%%%%%%%%%%
>
> It’s really astounding what kind of situations sometimes arise…

I'd like to add to this bug report (single voice using a variable):

%%%%%%%%%%%%%%

altoOneVoice = \relative {
   d'2\melisma e4\melismaEnd cis
}

altoTwoVoices = \relative {
    <<
      { d'2\melisma e4\melismaEnd cis }
      \new Voice { \voiceTwo s1 }
    >>
}

altText = \lyricmode {
    side, sit
}

\markup \column { "One voice in a music variable" "(center-aligned 
melisma)" }
\score {
    <<
      \new Staff \altoOneVoice
      \addlyrics \altText
    >>
}

\markup \column { "Two voices in a music variable" "(no melisma at all)" }
\score {
    <<
      \new Staff \altoTwoVoices
      \addlyrics \altText
    >>
}

% same music as above, but explicitly written out in the \score block
\markup \column { "One voice explicitly written out in \score block" 
"(left-aligned melisma)" }
\score {
    <<
      \new Staff \relative {
        d'2\melisma e4\melismaEnd cis
      }
      \addlyrics \altText
    >>
}

% same music as above, but explicitly written out in the \score block
\markup \column { "Two voices explicitly written out in \score block" 
"(left-aligned melisma)" }
\score {
    <<
      \new Staff \relative {
        <<
          { d'2\melisma e4\melismaEnd cis }
          \new Voice { \voiceTwo s1 }
        >>
      }
      \addlyrics \altText
    >>
}

%%%%%%%%%%%%%%



- Abraham


ihahchha.png (55K) 
<http://lilypond.1069038.n5.nabble.com/attachment/180897/0/ihahchha.png>




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Obscure-melisma-fail-tp180855p180897.html
Sent from the Bugs mailing list archive at Nabble.com.


reply via email to

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