michael-brade / LaTeX.js

JavaScript LaTeX to HTML5 translator
https://latex.js.org
MIT License
736 stars 58 forks source link

Not equal sign rendering incorrectly. #138

Open sirrommit opened 1 year ago

sirrommit commented 1 year ago

Using the \ne, \neq, or even a unicode notequal symbol renders incorrectly in math mode (tested in Firefox and Safari on MacOS). The slash renders before the equal sign. In Firefox the slash is significantly before the equal sign and in Safari the slash is just before the equal sign.

On the latex.js.org/playground page, the slash renders as a non-existent symbol.

KaTeX has a known issue with mis-aligning the slash vertically in some situations, but this is mis-aligned horizontally. One possible solution would be to redefine the KaTeX macros along the lines of:

katex.render( text, element, { macros: { '\neq': '\mathrel{\char`≠}', }, }, )

As found at this page: https://github.com/KaTeX/KaTeX/issues/2109

Thank you for this impressive work.

michael-brade commented 1 year ago

oh... I will try updating KaTeX first and then see what's going on.

caroblank commented 11 months ago

Hi Michael, Thank you for your work. Have you ever tried updating Katex? Unfortunately it still doesn't work.