为什么要加点注释?如果除法是 8,这意味着 8 个单位代表一个四分音符。所以 24 代表三个四分音符,在 3/4 时间的情况下是一个完整的小节休止符。
至于连音,我也很好奇。这是从音乐 xml 网站的教程片段“ apres un reve ”中获取的示例。这也是 3/4,有 24 个分区。时间修改属性指定连音的比例,在这种情况下是三个八音符的三连音。
<time-modification>
<actual-notes>3</actual-notes>
<normal-notes>2</normal-notes>
</time-modification>
上面的时间修改表明,三个八分音符的持续时间通常是两个。
<note default-x="92">
<pitch>
<step>E</step>
<alter>-1</alter>
<octave>5</octave>
</pitch>
<duration>8</duration>
<tie type="stop"/>
<voice>1</voice>
<type>eighth</type>
<time-modification>
<actual-notes>3</actual-notes>
<normal-notes>2</normal-notes>
</time-modification>
<stem default-y="-40">down</stem>
<beam number="1">begin</beam>
<notations>
<tied type="stop"/>
<tuplet bracket="no" number="1" placement="above" type="start"/>
</notations>
</note>
<note default-x="122">
<pitch>
<step>D</step>
<octave>5</octave>
</pitch>
<duration>8</duration>
<voice>1</voice>
<type>eighth</type>
<time-modification>
<actual-notes>3</actual-notes>
<normal-notes>2</normal-notes>
</time-modification>
<stem default-y="-42">down</stem>
<beam number="1">continue</beam>
<lyric default-y="-80" number="1">
<syllabic>single</syllabic>
<text>que</text>
</lyric>
</note>
<note default-x="162">
<pitch>
<step>C</step>
<octave>5</octave>
</pitch>
<duration>8</duration>
<voice>1</voice>
<type>eighth</type>
<time-modification>
<actual-notes>3</actual-notes>
<normal-notes>2</normal-notes>
</time-modification>
<stem default-y="-45">down</stem>
<beam number="1">end</beam>
<notations>
<tuplet number="1" type="stop"/>
</notations>
<lyric default-y="-80" number="1">
<syllabic>begin</syllabic>
<text>char</text>
</lyric>
</note>