#!/bin/sh
#
# makehtml - converts a bibtex database into html file(s)
#
# You will need to customise this file!
#
# Files required:
# LIST TO COME
#
# To make a master index + subject indices, uses makehtmlall
ln -s papers.bib makehtml.bib
rm -f makehtml.aux
rm -f makehtml.bbl
latex makehtml
bibtex2 makehtml
rm -f makehtml.bib
./makehtml.filter makehtml.html
cat html.papers.head makehtml.html html.foot >papers.html