Skip to content

Instantly share code, notes, and snippets.

@tomykaira
Last active December 31, 2015 15:29
Show Gist options
  • Save tomykaira/8007532 to your computer and use it in GitHub Desktop.
Save tomykaira/8007532 to your computer and use it in GitHub Desktop.
For senior thesis
.DEFAULT_GOAL := thesis.pdf
%.pdf: %.dvi
dvipdfmx $^
thesis.dvi: thesis.tex refs.bib
platex -halt-on-error -shell-escape thesis.tex
bibtex thesis
platex -halt-on-error thesis.tex
platex -halt-on-error thesis.tex
abstract.tex: thesis.tex
sed -e '/\maketitle/,$$c \\\maketitle\n\\end{document}' $< > $@
abstract.dvi: abstract.tex
platex -halt-on-error $<
clean:
rm -rf *.aux *.bbl *.blg *.toc *.log *.xbb *.dvi *.pdf thesis.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment