>
> This is a multi-part message in MIME format.
> --------------190C195BFA9BA0B7C0249009
> Content-Type: text/plain;
> charset=us-ascii
> Content-Transfer-Encoding: 7bit
>
> Hi,
>
> I've tried to use -local_icons to get the "blueball" icons to be
> included into
> a self-contained document. Only the "navigation" icons get copied into
>
> the local subdirectory with the document. When I look at the html
> source,
> it is looking for these icons in the $ICONSERVER directory.
This has been fixed in the latests (V98.2) versions of LaTeX2HTML,
but is probably just a 1-line fix for the version that you are
currently using.
The fix lies in the definition of subroutine: set_htmllist_marker
within the file:
$LATEX2HTMLDIR/styles/htmllist.perl
The code block for this subroutine should finish as follows:
$imagemark =~ s/~/~/g; # Allow ~'s in $ICONSERVER
# mark as used, in case $LOCAL_ICONS: thanks, Roman E. Pavlov
$used_icons{$icon} = 1;
$imagemark;
}
Note the line: $used_icons{$icon} = 1;
which marks the icon as used, for later copying into the
local directory.
> This seems like a bug to me. Any work arounds?
Making the above edit should be a complete fix.
Hope this helps,
Ross Moore