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

NEW. Taught parser about LilyPond \repeatTie. #1565

Closed trevorbaca closed 9 months ago

trevorbaca commented 9 months ago

NEW:

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

Closes #1564.