> I am trying to insert a
> \htmlimage{external}
> inside a {makeimage} env, but it does not seem to work, the
> images turn out inlined instead of as external links as the
> manual suggests, anyone know why this could be happening?
>
> Then, I even tried a simple case:
>
> \begin{figure}
> \htmlimage{external}
> Just some text
> \end{figure}
There is a 1-character typo in the latex2html script.
This line
s/(^|,\s*)external/$external=$1;''/ie;
^^
should be
s/(^|,\s*)external/$external=1;''/ie;
^
Now you should get a textual marker, e.g. [IMAGE]
as an active hyperlink.
> Can this be done, or is it not possible? Also, I need it to work
> in a {makeimage} env, not in a {figure} (though I guess if needed,
> I could wrap my makeimage inside a figure...)
Yes, it works with {makeimage} environments too now.
>
> Thanks for any help!
>
Thank you for reporting the problem.
Cheers
Ross
BTW, did you get the updated itrans.perl ?