Abjad / abjad

Abjad is a Python API for building LilyPond files. Use Abjad to make PDFs of music notation.
https://abjad.github.io
GNU General Public License v3.0
234 stars 41 forks source link

Teach parser about LilyPond \repeatTie #1564

Closed trevorbaca closed 9 months ago

trevorbaca commented 9 months ago

Make this work:

voice = abjad.Voice(r"c'4 c'2. \repeatTie")
string = abjad.lilypond(voice)
print(string)
\new Voice
{
    c'4
    c'2.
    \repeatTie
}