Ron Kok

Results 47 comments of Ron Kok

The problem is that Unicode does not include any code points that are un-ambiguously dedicated to calligraphic letters. The closest is the [Unicode range](https://www.unicode.org/charts/PDF/U1D400.pdf) from U+1D49C to U+1D4CF. That range...

> `\mathit{\alpha}` I don't think it is anywhere nearly that simple. We must keep in mind that Computer Modern does not contain glyphs for such things as mathematical bold small...

> However, \alpha does have an italic glyph and bold italic glyph: Okay, now that I look, I see that such glyphs are there. And there is code in `wideCharacters.js`...

Don't review this PR yet. There is an issue in MathML.

Update: The issue that I have just found is unrelated to this PR. I was thinking that I might add the correction here, but the other issue should really be...

Just thinking out loud here: One of the `ParseError` arguments is a token with information about the location of the error. This information is available if the error crops up...

The current version of `\pmb` uses multiple overlaid rendering, like LaTeX. But in a browser, a less brittle approach is possible, that being CSS `text-shadow`, as @ylemkimon once suggested. If...

There is more than one way to do this. If you are using the KaTeX [auto-render extension](https://khan.github.io/KaTeX/docs/autorender.html), then you can delimit your math with `\(…\)` instead of `$…$`. Or you...

Well, the `_` symbol indicates a subscript, of course. The KaTeX "supsub" builder is currently seeing an un-expanded macro as its base. Hence the error message. Digging deeper, `\;` relies...