# (chmod u+x maketalk) # usage: maketalk [filename without the ".tex" extension] # # by: Jaideep Singh # # date: April 05, 2007 # # description: this is a shell script used to compile a prosper latex file # from http://cheminfo.informatics.indiana.edu/~rguha/writing/pub/prosper/prosper.html # # executing "maketalk talk" will use "talk.tex" as input and produce: # talk.dvi , talk.ps , talk.pdf date latex $1.tex date latex $1.tex date dvips -t a4 -Ppdf -G0 $1.dvi -o $1.ps date ps2pdf -dPDFsettings=/prepress $1.ps $1.pdf date