Comment #3 on issue 630 by [email protected]: non-synchronized grace note makes voiceOne go stems down
http://code.google.com/p/lilypond/issues/detail?id=630

A simple workaround is to move the grace note out of the <<{...} \\ {...}>> construct:

\version "2.13.4"
\relative c''
{
 \grace b8 << { c c c c } \\ { g g g g } >>
}

An alternative solution that also works in the case where the second voice starts with a grace note is to explicitly add \voiceXXX commands after the grace notes:

\version "2.13.4"
\relative c''
{
 << {  \grace b8 \voiceOne c c c c } \\ { \grace a \voiceTwo g g g g } >>
}



--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings


_______________________________________________
bug-lilypond mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to