Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed: Beaming section #85

Merged
merged 7 commits into from
May 24, 2024
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 34 additions & 55 deletions v2/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1160,32 +1160,33 @@ <h4>Chords</h4>
</section>
<section>
<h4>Beaming</h4>
<div class="issue" data-number="24"></div>
<div class="issue" data-number="45"></div>
<table class="simple">
<thead>
<tr>
<th>Code</th>
<th>Remarks</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>{</code></td>
<td>beginning of beaming</td>
</tr>
<tr>
<td><code>}</code></td>
<td>end of beaming</td>
</tr>
</tbody>
</table>

<div class="issue" data-number="84"></div>
<p>
Beamed notes are encoded using braces <code>{}</code>.
</p>
<p>
Beam groups MUST start with an opening brace <code>{</code>, and
MUST end with a closing brace, <code>}</code>. Nested beam groups
MUST NOT occur, except as part of a <a>grace note group</a>.
</p>
<p>
Notes with duration values of <code>0</code>, <code>1</code>, <code>2</code>,
<code>4</code>, and <code>9</code> MUST NOT occur within
a beam group. Notes with other duration values MAY occur within
a beam group.
</p>
<p>
Beam groups MUST NOT occur in Mensural encodings.
ahankinson marked this conversation as resolved.
Show resolved Hide resolved
ahankinson marked this conversation as resolved.
Show resolved Hide resolved
</p>
<aside class="example" title="Encoding Beams">
<table class="simple" style="width: 100%">
<thead>
<tr>
<th>Code</th>
<th>Notation</th>
<th>Remarks</th>
</tr>
</thead>
<tbody>
Expand All @@ -1202,6 +1203,20 @@ <h4>Beaming</h4>
<code>{''6E'B8G}{GA}-''C{'3B8..G}</code>
</td>
<td class="notation-result"></td>
<td>Example beam encoding</td>
</tr>
<tr class="notation-example">
<td class="notation-code">
<script type="application/json">
{
"clef": "G-2",
"data": "'8{ABqq{''6CD}r'8AB}"
}
</script>
<code>8{ABqq{''CD}r'AB}</code>
</td>
<td class="notation-result"></td>
<td>Beaming with a Grace Note Group</td>
</tr>
</tbody>
</table>
Expand Down Expand Up @@ -1681,42 +1696,6 @@ <h5>Rhythmic sequence</h5>
</aside>
</section>
</section>
<section>
<div class="issue" data-number="26"></div>
<div class="issue" data-number="35"></div>
<h4>Change of Clef, Key Signature, Time Signature</h4>
<p>
Use <code>%</code> to change the clef, <code>$</code> to change the key, and <code>@</code> to change
the time signature. Follow this with the new indication (clef, key, or time), followed by a space.
</p>
<p>
The introductory characters are mandatory.
</p>
<aside class="example" title="Encoding Clef, Key Signature, and Time Signature Changes">
<table class="simple" style="width: 100%">
<thead>
<tr>
<th>Code</th>
<th>Notation</th>
</tr>
</thead>
<tbody>
<tr class="notation-example">
<td class="notation-code">
<script type="application/json">
{
"clef": "G-2",
"data": "%C-1 $bBEA @c '2A-//$xFC 8B-4-2-/@3/2 1C2-//"
}
</script>
<code>%C-1 $bBEA @c '2A-//$xFC 8B-4-2-/@3/2 1C2-//</code>
</td>
<td class="notation-result"></td>
</tr>
</tbody>
</table>
</aside>
</section>
</section>
</section>
<section>
Expand Down
Loading