gjtorikian / mtex2MML

A Bison grammar to convert TeX math into MathML.
23 stars 14 forks source link

Request: Add support for sizing ceil/floor as delimiters #57

Open ghost opened 7 years ago

ghost commented 7 years ago

\left and \right, and the variants of \big and \small work as expected on usual delimiters such as brackets and angle brackets, but they don't work on ceil and floor operators.

This is specifically awkward when using these operations on fractions, since they require a larger sized delimiter to look sensible.

For instance, this:

$$
\left \lceil \frac{a}{b} \right \rceil
$$

Currently the left and right are simply ignored. Which leads to too-small ceiling (and floor) symbols.

gjtorikian commented 7 years ago

Makes sense; I'll add it to my backlog.

ghost commented 7 years ago

Awesome, thanks 👍