I'm trying to convert my LaTeX document to HTML using HeVeA and I'm facing a problem with cleveref package -- my LaTeX file uses \cref and \Cref heavily, but hevea doesn't support this package by default.
First thing I tried was importing whole cleveref.sty -- that somehow didn't work, I was also looking at cleveref source, but that is a little too complex for me :-)
So the question is -- how do you think is a best way to do references in document that is supposed to be converted with HeVeA?
example of this is really trivial:
\documentclass{article}
\usepackage{cleveref}
\begin{document}
\section{A}
\label{x}
\Cref{x}, \cref{x}.
\end{document}
run pdflatex on this twice and you get a nice pdf with 'Section 1, section 1'. HeVeA fails with Command not found: \Cref
TeX4htinstead ofHeVeA? It would be helpful if you posted an MWE (minimum working example) that demonstrates the problems that you're encountering. – Mico Feb 8 at 21:39