We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ef5018a]
Consider the MusicXML file in the attached archive and process it with
xml2ly trill-span.xml > trill-span.ly
Processing the .ly file with lilypond gives both a warning and bad output:
.ly
lilypond
trill-span.ly:46:1: warning: Unattached TrillSpanEvent
The cause is an incorrectly inserted \barNumberCheck command right before \stopTrillSpan:
\barNumberCheck
\stopTrillSpan
b'4 \startTrillSpan b' b' | % 3 \barNumberCheck #3 \stopTrillSpan
It should be exactly the opposite, i.e., \stopTrillSpan should come before \barNumberCheck:
b'4 \startTrillSpan b' b' \stopTrillSpan | % 3 \barNumberCheck #3
trill-span.zip
The text was updated successfully, but these errors were encountered:
No branches or pull requests
[ef5018a]
Consider the MusicXML file in the attached archive and process it with
xml2ly trill-span.xml > trill-span.ly
Processing the
.ly
file withlilypond
gives both a warning and bad output:The cause is an incorrectly inserted
\barNumberCheck
command right before\stopTrillSpan
:It should be exactly the opposite, i.e.,
\stopTrillSpan
should come before\barNumberCheck
:trill-span.zip
The text was updated successfully, but these errors were encountered: