Mats Bengtsson wrote:


Maurizio Tomasi wrote:

The reason why Lilypond is not behaving as expected is, when you use <<>> Lily creates a new voice (by the way, why are you using "\\"?). The solution is to include the note to tie in the <<>> construct as well:

\score {
    \new Staff {
        \relative c' {
            << { c1 ~ c4 }
               { s4 s4\< s4\! \> s4\! s4 } >> c4 c c
        }
    }
}


I hope you have read the other responses to this question and realized
that <<...>> does not create any new voices, it's \\ that is the
culprit.


/Mats


Yes, I sent this e-mail about one hour ago but appeared on my Mail window just now. The reason for my mistake was, when I tried this first idea...


\score {
    \new Staff {
        \relative c' {
            << { c1 ~ } { s4 s4\< s4\! \> s4\! } >> c4 c c c
        }
    }
}

...I forgot that using << at the very beginning of a score is discouraged! Adding "\new Voice" just before "\relative" makes this example works as well.

Thank you,
  Maurizio.

--
****************************************
Maurizio Tomasi
Via Newton, 6
24126 Bergamo (Italy)
Tel. +39-02-23699308
http://www.geocities.com/zio_tom78/
****************************************



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

Reply via email to