#!/bin/sh
# This script runs TeX and previews the resulting dvi
# publCIF starts this as an external process 
# but does not interact further with the process
# (see texinfo.txt)
#
# 1) Change directory to location of tmptex files:
cd $1
# 2) run tex (edit this command if necessary):
tex -interaction=nonstopmode ./tmptex.tex
# 3) preview dvi (edit this command if necessary):
xdvi ./tmptex.dvi
