John Blischak Script to compile to pdf.  over 8 years ago

Commit id: c7a0117702eb7ee845bf5265fa619630bb7e01b2

deletions | additions      

         

#!/bin/bash  # Compile tex to pdf  TEX=$1  BASE=${TEX%.tex}  # Number the figures  latex $BASE  # Add the bibliography  bibtex $BASE  # Number the in-text citations  latex $BASE  # Convert to pdf  pdflatex $BASE