[EMAIL PROTECTED] writes:
> Let me jump in here, I have the same problem, but I'm very new to l2h.
> I really have no idea what I'm doing. I'm running v98.1p1. If there is
> a quick, easy answer to this problem, I'd be interested in it as well.
> I've been fixing things by hand, which is tedious but effective.
The way I fixed it (thanks to Sven's suggestion) would have involved
manual editing except for the fact that I had a PERL script to
manipulate markups and was able to modify it to insert an extra
environment into figures.
The solution is to insert an empty makeimage enviromnemt into the
figure. For example, this figure will come up as a .gif:
\begin{center}
\begin{figure}[htp]
\begin{verbatim}
Text of figure
\end{verbatim}
\caption{Example display of optimization mode help}
\end{figure}
But with the makeimage environment inserted into the figure it will
come up as HTML text using the <PRE> tag:
\begin{center}
\begin{figure}[htp]
%The following two functions inserted by striptex.
\begin{makeimage}
\end{makeimage}
\begin{verbatim}
Text of figure
\end{verbatim}
\caption{Example display of optimization mode help}
\end{figure}
If you are a PERL programmer it's easy enough to look for figure...
verbatim environments and stuff in the makeimage. It has worked fine
for me.
Dan Young