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


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

Reply via email to