christianp / asciimath2tex

JavaScript library to convert AsciiMath to TeX
Apache License 2.0
70 stars 16 forks source link

\twoheadrightarrowtail support #8

Closed GarkGarcia closed 4 years ago

GarkGarcia commented 4 years ago

Hi all. I'm working on implement LaTeX output support support for asciidoctor/asciimath, which is quite similar to what you guys are doing in here.

As stated in here, KaTeX does not support the \twoheadrightarrowtail macro (neither do vanilla LaTeX, amsmath or amssymb). In fact, I was surprised that I couldn't find a TeX package that supports this specific symbol.

Did you guys have any luck with this? I believe we should exchange information about this issue.

christianp commented 4 years ago

KaTeX doesn't have it, but MathJax does.

christianp commented 4 years ago

Now I've looked at what you're doing, I see that you want to know which TeX package provides this symbol: it's stix, according to the comprehensive LaTeX symbols guide.

GarkGarcia commented 4 years ago

Alright, thanks!