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

Changed abjad.Accidental.symbol string for quartertones. #1562

Closed trevorbaca closed 10 months ago

trevorbaca commented 10 months ago

OLD:

>>> abjad.Accidental("qf").symbol
"~"
>>> abjad.Accidental("tqf").symbol
"b~"
>>> abjad.Accidental("qs").symbol
"+"
>>> abjad.Accidental("tqs").symbol
"#+"

NEW:

>>> abjad.Accidental("qf").symbol
"qf
>>> abjad.Accidental("tqf").symbol
"tqf"
>>> abjad.Accidental("qs").symbol
"qs"
>>> abjad.Accidental("tqs").symbol
"tqs"

Made component tags settable.

Removed "parser" and "location" variables from LilyPond music functions.