20 lines
408 B
Makefile
20 lines
408 B
Makefile
|
|
#
|
|
|
|
|
|
paper: paper.tex introduction_paper.tex
|
|
#latex paper.tex
|
|
#dvipdf paper pdflatex cannot use eps ffs
|
|
pdflatex paper.tex
|
|
cp paper.pdf introduction_paper.pdf
|
|
okular introduction_paper.pdf
|
|
|
|
|
|
# Remove the need for referncing graphics in subdirectories
|
|
#
|
|
introduction_paper.tex: introduction.tex paper.tex
|
|
cat introduction.tex | sed 's/introduction\///' > introduction_paper.tex
|
|
|
|
bib:
|
|
bibtex paper
|