這是 Midi 之後更完善的通用樂譜格式, 已有 Sibelius 等眾多軟體相容; 官方網站: http://www.musicxml.org/ 或 http://www.recordare.com/musicxml
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.0 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd"><score-partwise version="3.0"> <!-- 根節點: score-partwise --> <part-list> <!-- 行(分譜)列表 --> <score-part id="P1"> <part-name>Piano</part-name> <!-- 樂器名稱 --> </score-part> </part-list> <part id="P1"> <measure number="1"> <!-- 第一小節 --> <attributes> <!-- 小節屬性 --> <divisions>256</divisions> <!-- 設定用 256 表示一個四分音符號的長度 --> <key> <fifths>0</fifths> <!-- C大調(沒有升降號) --> </key> <time> <beats>4</beats> <beat-type>4</beat-type> <!-- 4/4 拍 --> </time> <clef> <sign>G</sign> <line>2</line> <!-- 使用高音譜號(G譜號) --> </clef> </attributes> <note> <!-- 音符 --> <pitch> <!-- 音高 --> <step>C</step> <octave>4</octave> <!-- 中央 C --> </pitch> <duration>1024</duration> <!-- 演奏時值 --> <type>whole</type> <!-- 音符類型: 256th、128th、64th、32nd、16th、eighth、quarter、half、whole、breve、long --> </note> </measure> </part></score-partwise>
(Google 瀏覽器可視):