On 28/01/13 14:07, Garrett Fitzgerald wrote:
I'm having a problem with the beginning repeat sign of the following code being repeated on each side of the acciaccatura.

This is an old bug ( https://code.google.com/p/lilypond/issues/detail?id=34). You need to add a grace note skip to the other staff as a workaround:

\version "2.14.2"

\score {
  <<
    \new Staff  {
      \time 6/8

      \transpose c des \relative c''' {
R2. |
\repeat volta 2 {
 \acciaccatura eis,8 fis4 r8 \acciaccatura ais8 b4 r8 |
}
      }
    }

    \new Staff  {
      \time 6/8

      R2. |
      \repeat volta 2 {
        \grace s8 a'4 r8 e'4 r8
      }
    }
  >>

  \layout {}
}

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

Reply via email to