UNPKG

doremi-script

Version:

Letter music notation processor

73 lines (72 loc) 2.13 kB
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 1.0 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd"> <score-partwise> <identification> <miscellaneous> <miscellaneous-field name="description">Each note of a chord can have some lyrics attached. In this case, each note of the chord has lyrics of the form "Lyrics [123]" attached, where each lyrics has a different number attribute to distinguish them. These syllables should be imported into three different stanzas and the timing should be correct.</miscellaneous-field> </miscellaneous> </identification> <part-list> <score-part id="P1"> <part-name>MusicXML Part</part-name> </score-part> </part-list> <!--=========================================================--> <part id="P1"> <measure number="1"> <attributes> <divisions>1</divisions> <key> <fifths>0</fifths> <mode>major</mode> </key> <time symbol="common"> <beats>4</beats> <beat-type>4</beat-type> </time> <clef> <sign>G</sign> <line>2</line> </clef> </attributes> <note> <pitch> <step>E</step> <octave>5</octave> </pitch> <duration>1</duration> <voice>1</voice> <type>quarter</type> <lyric number="1"><text>Lyrics 1</text></lyric> </note> <note> <chord/> <pitch> <step>C</step> <octave>5</octave> </pitch> <duration>1</duration> <voice>1</voice> <type>quarter</type> <lyric number="2"><text>Lyrics 2</text></lyric> </note> <note> <chord/> <pitch> <step>A</step> <octave>4</octave> </pitch> <duration>1</duration> <voice>1</voice> <type>quarter</type> <lyric number="3"><text>Lyrics 3</text></lyric> </note> </measure> </part> </score-partwise>