Skip to content
Merged
Changes from all 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
126 changes: 122 additions & 4 deletions playground/experiments.html
Original file line number Diff line number Diff line change
Expand Up @@ -184,23 +184,51 @@ <h1>Experiments</h1>
</tr>
<tr>
<td>
COMBINING RIGHT ARROW ABOVE, accent unset, stretchy=false
Hyphen, stretchy=false
<td>
<math display="block">
<mover>
<mover accent="true">
<mi>x</mi>
<mo stretchy="false">-</mo>
</mover>
</math>
</tr>
<tr>
<td>
Hyphen, stretchy=true
<td>
<math display="block">
<mover accent="true">
<mrow>
<mi>x</mi>
<mi>y</mi>
<mi>z</mi>
</mrow>
<mo stretchy="true">-</mo>
</mover>
</math>
</tr>
<tr>
<td>
COMBINING RIGHT ARROW ABOVE, accent true, stretchy=false
<td>
<math display="block">
<mover accent="true">
<mi>x</mi>
<mo stretchy="false">&#x20D7;</mo>
</mover>
<mover accent="true">
<mi>X</mi>
<mo stretchy="false">&#x20D7;</mo>
</mover>
</math>
</tr>
<tr>
<td>
COMBINING RIGHT ARROW ABOVE, accent unset, stretchy=true
COMBINING RIGHT ARROW ABOVE, accent true, stretchy=true
<td>
<math display="block">
<mover>
<mover accent="true">
<mrow>
<mi>x</mi>
<mi>y</mi>
Expand Down Expand Up @@ -266,6 +294,96 @@ <h1>Experiments</h1>
</mover>
</math>
</tr>
<tr>
<td>
FULL STOP, accent true, stretchy=false
<td>
<math display="block">
<mover accent="true">
<mrow>
<mi>x</mi>
<mi>y</mi>
<mi>z</mi>
</mrow>
<mo stretchy="false">.</mo>
</mover>
</math>
</tr>
<tr>
<td>
ACUTE ACCENT, accent true, stretchy=true
<td>
<math display="block">
<mover accent="true">
<mrow>
<mi>x</mi>
<mi>y</mi>
<mi>z</mi>
</mrow>
<mo stretchy="true">&#xB4;</mo>
</mover>
</math>
</tr>
<tr>
<td>
GRAVE ACCENT, accent true, stretchy=true
<td>
<math display="block">
<mover accent="true">
<mrow>
<mi>x</mi>
<mi>y</mi>
<mi>z</mi>
</mrow>
<mo stretchy="true">&#x60;</mo>
</mover>
</math>
</tr>
<tr>
<td>
CIRUMFLEX ACCENT, accent true, stretchy=true
<td>
<math display="block">
<mover accent="true">
<mrow>
<mi>x</mi>
<mi>y</mi>
<mi>z</mi>
</mrow>
<mo stretchy="true">&#x5E;</mo>
</mover>
</math>
</tr>
<tr>
<td>
BREVE ACCENT, accent true, stretchy=true
<td>
<math display="block">
<mover accent="true">
<mrow>
<mi>x</mi>
<mi>y</mi>
<mi>z</mi>
</mrow>
<mo stretchy="true">&#x2D8;</mo>
</mover>
</math>
</tr>
<tr>
<td>
CARON ACCENT, accent true, stretchy=true
<td>
<math display="block">
<mover accent="true">
<mrow>
<mi>x</mi>
<mi>y</mi>
<mi>z</mi>
</mrow>
<mo stretchy="true">&#x2C7;</mo>
</mover>
</math>
</tr>
<tr>
<td>
\LaTeX
Expand Down
Loading