Web Publications – LaTeX Style – HTML View
goessner.github.io
Web Publications – LaTeX Style – HTML View
1–10 of 20 posts
Re: Web Publications – LaTeX Style – HTML View
#2Re: Web Publications – LaTeX Style – HTML View
#3I found it hard to understand the point of this. It talks about imitating the “look and feel” of LaTeX documents in HTML, but fails to do so. If the article itself is an example, it’s the familiar low-quality browser-rendered HTML typography.
Re: Web Publications – LaTeX Style – HTML View
#4I found it hard to understand the point of this. It talks about imitating the “look and feel” of LaTeX documents in HTML, but fails to do so. If the article itself is an example, it’s the familiar low-quality browser-rendered HTML typography.
> The resulting HTML document already contains prerendered math formulas, so browsers won't have the burden of math rendering via scripting.
It wants the math support of latex in an html document generated from the markdown source file.
Re: Web Publications – LaTeX Style – HTML View
#5Re: Web Publications – LaTeX Style – HTML View
#6Use Katex
This does use KaTeX for rendering the TeX:
> Math support is the core functionality of mdmath. Inline math $r = \sqrt{x^2 + y^2}$ and display math expressions $$e^{ix}=\cos x + i\sin x$$ are supported, due to markdown-it extension markdown-it-texmath [8] and the fast math renderer KaTeX [9].
> [8] markdown-it-texmath, (https://github.com/goessner/markdown-it-texmath).
> [9] KaTeX, (https://katex.org/)
Re: Web Publications – LaTeX Style – HTML View
#7However, I don't know if there's a way to use it for regular Tex documents.
Re: Web Publications – LaTeX Style – HTML View
#8Re: Web Publications – LaTeX Style – HTML View
#9This is maybe the third time I've seen the concept of a LaTeX styled html page and it never seems like a good idea to me. I'm all for math typesetting in HTML, but I no longer "believe" in justification, especially not browser's dissatisfying one-paragraph based techniques. But even with knuth-plass I have reasons to suspect ragged right text is better, see https://news.ycombinator.com/item?id=27189306 I'm willing to…
I had better sources at some point but I'll have to dig them up.
Re: Web Publications – LaTeX Style – HTML View
#10I found it hard to understand the point of this. It talks about imitating the “look and feel” of LaTeX documents in HTML, but fails to do so. If the article itself is an example, it’s the familiar low-quality browser-rendered HTML typography.
From the abstract: > The resulting HTML document already contains prerendered math formulas, so browsers won't have the burden of math rendering via scripting. It wants the math support of latex in an html document generated from the markdown source file.