Here are some hints and easy commands to get you started. You can find more advanced commands in the User's Manual.
Do NOT use psfig.sty to support your graphics. It is old, and not supported by LaTeX2HTML. Instead, use graphics.sty or graphicx.sty, both of which are locally available.
Do NOT use the command \documentstyle in your input file.
Instead use the LaTeX2e command \documentclass. For
more information, read the tutorial.tex file which created this
document.
A normal HTML link can be made using the command htmladdnormallink. The following command created the link in the first paragraph of this section:
\htmladdnormallink{User's
Manual}{http://www.sci.wsu.edu/math/helpdesk/latex2htm
l/manual/manual.html}
To include text in the HTML version only (and not the .ps version), use the following command:
\html{text}
To include text2 in the .ps version only, use the following command:
\latex{text2}
The following command will set the background color to white in the HTML document:
\bodytext{
bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000"
alink="#FF0000"
}
There is a bug in Netscape 3.0 which affects people who use black and
white monitors (like the ones in the Newton Lab) to view HTML pages. A
document created in LaTeX2HTML with the normal settings will have a
very undesirable feature for these people: all math mode equations,
like
, will
show up as solid black boxes. To work around this, I recommend that you
set the background color to white (see previous item), and place the
following lines in your .latex2html-init file:
$TRANSPARENT_FIGURES = 0; $GIFTRANS = 0; $USENETPBM = 0;