Skip to content

Commit

Permalink
Fixed: Specify bar for alternating time sigs
Browse files Browse the repository at this point in the history
The space character was problematic as it caused ambiguities with change of clef.

This specifies that alternating time signatures should be separated by a vertical bar

Fixes #103
  • Loading branch information
ahankinson committed May 29, 2024
1 parent 7468d66 commit 13f3e68
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions v2/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -483,8 +483,6 @@ <h4>Time Signature</h4>
<p>
There are two main categories of time signature forms, <a>Common Western Music Notation</a>
(<abbr title="Common Western Music Notation">CWMN</abbr>) and Mensural.
If a mensuration sign is specified, the <a>clef</a> MUST specify a <code>+</code> separator to
indicate the encoding is in mensural notation.
</p>
<p>
For neume notation, the time signature MUST be omitted.
Expand All @@ -502,7 +500,8 @@ <h4>Time Signature</h4>
</p>
<p>
<abbr title="Common Western Music Notation">CWMN</abbr> time signatures that indicate alternating
measures MAY be indicated by transcribing both. These MUST be separated by a single space character.
measures MAY be indicated by transcribing both. These MUST be separated by a vertical bar
<code>|</code> character.
</p>
<p>
For mensuration signs, the <code>c</code> and <code>o</code> characters indicate <em>tempus
Expand Down Expand Up @@ -665,11 +664,11 @@ <h4>Time Signature</h4>
<script type="application/json">
{
"clef": "G-2",
"timesig": "3/4 4/4",
"timesig": "3/4|4/4",
"data": ""
}
</script>
<code>3/4 4/4</code>
<code>3/4|4/4</code>
</td>
<td class="notation-result">
</td>
Expand Down

0 comments on commit 13f3e68

Please sign in to comment.