- Code: Select all
<part-group number="1" type="start"/>
...parts...
<part-group number="2" type="start"/>
...parts...
<part-group number="2" type="stop"/>
...parts...
<part-group number="1" type="stop"/>
But nothing in the spec seems to stop us from doing "overlapping" groups like this
- Code: Select all
<part-group number="1" type="start"/>
...parts...
<part-group number="2" type="start"/>
...parts...
<part-group number="1" type="stop"/>
...parts...
<part-group number="2" type="stop"/>
Is the "overlapping" example considered a valid MusicXML use case? I see that Finale does support this, so is this considered valid in MusicXML? Are there scores out there that require this?
The result of this is that, in considering a music notation data model, it seems that part groups really are a totally separate declarative entity rather than a container of parts. Does everyone seem to agree on this?