-
Notifications
You must be signed in to change notification settings - Fork 36
Closed
Labels
Description
It looks like python-ly is interpreting barchecklines | as if they are real
barlines. In LilyPond this isn't true, it's just a tool to check your
lilypond sourcecode, and you can leave it out. Even if that's not
recommended practice. Consider the following example:
\version "2.19.28"
\score {
\new Staff {
\time 4/4
\relative c' {
c4 d e f g a b c |
c b a g | f e d c
}
}
\layout {}
}
When compiled using LilyPond this gives no errors, no warnings, and correct
pdf output with 4 bars, separated by 3 barlines. When using "ly musicxml -o
barchecklines.xml barchecklines.ly", if I import and view the MusicXML file
using MuseScore the first barline is missing.