23 lines
367 B
Makefile
23 lines
367 B
Makefile
|
|
#
|
|
# Make the propositional logic diagram a paper
|
|
#
|
|
|
|
|
|
paper: paper.tex nr_paper.tex
|
|
#latex paper.tex
|
|
#dvipdf paper pdflatex cannot use eps ffs
|
|
pdflatex paper.tex
|
|
mv paper.pdf nr_paper.pdf
|
|
okular nr_paper.pdf
|
|
|
|
|
|
# Remove the need for referncing graphics in subdirectories
|
|
#
|
|
nr_paper.tex: nr.tex
|
|
cat nr.tex | sed 's/nr\///' > nr_paper.tex
|
|
|
|
|
|
bib:
|
|
bibtex paper
|