Status: Accepted
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 1698 by [email protected]: Slurs and ties are not correct over repeats
http://code.google.com/p/lilypond/issues/detail?id=1698

In the code below the first score block should create a score with a partial slur starting from the second e. It creates no slur at all and gives a warning "warning: unterminated slur". The second score block should give a similar result with a tie, but instead ties the first-time note to the second-time note. There is a little documentation referring to this, but it is incorrect behaviour.

\version "2.14.0"

\score {
  {
    e1( |
    \repeat volta 2 {
       a1) |
    }
    \alternative {
      { e1( | }
      {a1}
    }
  }
}

\score {
  {
    e1~ |
    \repeat volta 2 {
      e1 |
    }
    \alternative {
      { e1~ | }
      { e1 }
    }
  }
}


Attachments:
        Hendry.png  6.1 KB


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

Reply via email to