#!/bin/sh
#
# this shell script executes latex bibtex latex latex
# on a file to resolve all references and citations
#
latex $1
bibtex $1
latex $1
latex $1
