Comment #9 on issue 2591 by [email protected]: NR: repeat slurs and glissando workaround
http://code.google.com/p/lilypond/issues/detail?id=2591

Yes, \repeatTie does not work in TabStaff.

Perhaps the best approach is to generate another slur and move it by editing
the control points. This would work in TabStaff, although the control points
would be at different places:

\relative c'' {
  c1
  \repeat volta 3 { c4 d( e f }
  \alternative {
    { g2) d }
    {
\override Slur #'control-points = #'((-2 . 4) (-1 . 4) ( 0 . 4) (1 . 3))
      g2( f,)
    }
    {
\override Slur #'control-points = #'((-2 . 3) (-1 . 3) ( 0 . 3) (1 . 2))
      e'2( f,)
    }
  }
}

Trevor


Attachments:
        test1.gif  3.3 KB


Reply via email to