Here's my tips for putting your Latex'ed thesis online. Now that Google can search PDF files, there is less urgency to do this, but I like having it online, and I'm your sure potential collaborators would like it too... I'm assuming a Harvard-style document (i.e. using huthesis.cls; see my page on this), but most of what I say applies to any custom thesis style.
Keep in mind that it is a least a day's work (at least it was for me, with all the debugging below). More if you want it perfect.
# Force white background and black text
$BODYTEXT = "text=\"\#000000\" bgcolor=\"\#FFFFFF\"";
# This ensures that some figures do not end up with a grey background
$WHITE_BACKGROUND = 1;
# Tell LATEX:
$LATEX_COLOR = "\\pagecolor{white}";
$PSTOIMG = "$PERL /home/barnett/lib/pstoimg";
# use GIF rather than PNG:
$IMAGE_TYPE = $IMAGE_TYPES[1];
$ICONSERVER = "http://monsoon.harvard.edu/~barnett/icons";
1; # This must be the last line
Note that you only need the $PSTOIMG line if you made your own patched
version of pstoimg, in which case have it point to wherever you put your
version.
The $ICONSERVER line points to where you put your icons directory.
latex2html -white -antialias -image_type gif -html_version 3.2 thesis_htmlThis creates (or modifies) the directory thesis_html
Alex Barnett, October 2001.