tmke8 / latex2mmlc

https://tmke8.github.io/latex2mmlc/
MIT License
0 stars 0 forks source link

`stretchy="true"` is probably unnecessary to specify for the fences #252

Open tmke8 opened 2 weeks ago

tmke8 commented 2 weeks ago

At least for the common bracket types, this is set automatically. But I need to check that it works for all fence symbols.

tmke8 commented 1 week ago

It seems to be needed for this, at least on Firefox:

<mrow>
  <mo stretchy="true">∕</mo>
  <mfrac>
    <mn>1</mn>
    <mn>2</mn>
  </mfrac>
  <mo stretchy="true">∖</mo>
</mrow>

EDIT: well, this example doesn't work at all in Chrome, but this example (with normal slash and normal backslash) works, and it needs the stretchy="true":

<mrow>
  <mo stretchy="true">/</mo>
  <mfrac>
    <mn>1</mn>
    <mn>2</mn>
  </mfrac>
  <mo stretchy="true">\</mo>
</mrow>
tmke8 commented 1 week ago

See also