LaTeX.js
LaTeX.js copied to clipboard
Not equal sign rendering incorrectly.
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.
oh... I will try updating KaTeX first and then see what's going on.
Hi Michael, Thank you for your work. Have you ever tried updating Katex? Unfortunately it still doesn't work.