2008/9/7 CJ Bell <[EMAIL PROTECTED]>: > On Sun, Sep 7, 2008 at 12:12 PM, Neil Puttock <[EMAIL PROTECTED]> wrote: >> Remove the << >> brackets; you're forcing the volte to be >> simultaneous, so they're placed on top of each other. > > That is my intention. I'm trying to combine two parts. (and > \partcombine isn't working any better) > > [attached] is what I'm getting.
OK, if you want them together, you have to heed the warning in the docs about grace synchronization: http://kainhofer.com/~lilypond/Documentation/user/lilypond/Grace-notes.html#Grace-notes. You need to put a matching grace skip in the first alternative of the first part: \version "2.10.10" %\version "2.11.57" \score { \new Staff {<< { \repeat volta 2 { R1 } \alternative { { \grace s8 R1 } { R1 } } } { \repeat volta 2 { R1 } \alternative { { \acciaccatura c''8 c''1 } { R1 } } } >>} } Regards, Neil _______________________________________________ lilypond-user mailing list [email protected] http://lists.gnu.org/mailman/listinfo/lilypond-user
