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

Add aftergrace fraction property to `abjad.AfterGraceContainer` #1505

Closed GregoryREvans closed 2 months ago

GregoryREvans commented 1 year ago

As of Lilypond 2.19, \aftergraces may take an optional argument to temporarily set the afterGraceFraction of an after grace apparently without interfering with any global afterGraceFraction value set at the top level of the score.

Old:

\afterGrace d1 { c16[ d] }

New option:

\afterGrace 5/6 d1 { c16[ d] }

Could we add this to abjad.AfterGraceContainer?

trevorbaca commented 1 year ago

Yup, I'll add it.