TeX4ht

TeX4ht is a system for converting documents written in TeX/LaTeX/ConTeXt/etc. to HTML, various XML flavors, braille, etc., optionally using MathML.

Features

Project repository and discussions

Documentation and tutorials

Tools

Basic invocation for modern output

TeX4ht can be invoked in several ways. The original way is to use the htlatex command. To convert a LaTeX source file.tex to HTML5 that uses UTF-8, with MathML:

$ htlatex file.tex "xhtml,html5,mathml,charset=utf-8" " -cunihtf -utf8"

N.B. That command line has three arguments, the second two given inside shell quotes; the last argument starts with a space. More details on calling conventions.

An easier way is to use make4ht (see its documentation for more). The following command produces the same output as the previous one, HTML5 in UTF-8 encoding with MathML:

$ make4ht file.tex "mathml"

If you want to have MathJax (rather than the browser) rasterize the MathML:

$ make4ht file.tex "mathml,mathjax"

But perhaps the best method of all is to insert LaTeX into the HTML output, and have MathJax rasterize the LaTeX:

$ make4ht file.tex "mathjax"

This has the additional advantage (thanks to MathJax) that right-clicking on any equation in the HTML brings up a menu offering to provide the source for the equation.

Bug reports

Bug reports are welcome by email or by submission to the bug database. Please include a complete source document and the exact program invocation, as well as what goes wrong. To fix the problem we need to be able to reproduce it. If the problem remains unresolved, please submit it to the bug db, so it won't be forgotten.

Development status

We continue to install updates in the tex4ht development source and propagate them to TeX, although we have not made a full release in tex4ht. Some development changes remain solely in the source repository.

TeX4ht was created by Eitan Gurari at Ohio State University. Eitan died unexpectedly in June 2009; we extend our sympathies to his family, and dedicate future work on the project to his memory.

With the encouragement and support of Eitan's family, Michal Hoftich, Karl Berry, and others have continued to work on TeX4ht. Involvement by other volunteers, from bug reports to major new development, is welcome and needed.

No full post-Eitan release has been made to date. This continues to be a work in progress.

ChangeLog

Latest changes (full ChangeLog):

2024-03-10

tex4ht-4ht.tex (multibib-hooks.4ht): version.

2024-03-08

tex4ht-mathml.tex (mathml.4ht): fixed degree celsius with Siunitx.

tex4ht-mathml.tex (mathml.4ht): require math mode in Mhchem sup-sub.

Project repository.