How to convert a latex file to a single page html
Posted on In QAHow to convert a latex file to a single page html?
htlatex
is a good choice. On Fedora, install it by yum install texlive-tex4ht
.
To generate the HTML page from a latex file doc.tex:
htlatex doc
You can use the latex2html
(can be installed on Fedora by yum install latex2html
).
$ latex2html -split +0 -info "" -no_navigation ${filename}
${filename} is the tex file to be converted.
htlatex may be a better choice: https://www.systutorials.com/qa/748/how-to-convert-a-latex-document-with-figures-to-a-html-file?show=755#a755