#!/bin/tcsh
#########################################################################
# Script to create HTML version of manual
#########################################################################

texpand < dis_man.tex

latex html  > /dev/null
bibtex html > /dev/null
latex html  > /dev/null
latex html  > /dev/null

latex2html -no_antialias_text -t "DISCUS Users Guide" -split +2 html 

rm -f html.*

