Navigation
Most Visited HowTos
Recently, I looked for a solution to generate HTML code from Latex files. Finally, I found latex2html (apt-get it) to be the best solution. Here is the command with which I generated an HTML site from our Catastrophes as a Result of Bad Software Engineering paper (PDF is available here).
latex2html -dir html -split +2 -auto_prefix -local_icons -info 0 -address 0 MYTEXFILE.tex
By the way, compiling your Latex docs with rubber is much handier than using the standard Latex commands. You could use:
rm yourstuff
latex TEXPROJ
bibtex TEXPROJ
latex TEXPROJ
...
pdflatex TEXPROJ
or just:
rubber --pdf TEXPROJ.tex