-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (29 loc) · 743 Bytes
/
Makefile
File metadata and controls
37 lines (29 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
FIGURES=figure.pdf
paper.pdf: paper.tex authors.tex tools_table.tex paper.bib ${FIGURES}
pdflatex paper.tex
bibtex paper
pdflatex paper.tex
pdflatex paper.tex
arxiv-submission.tar.gz:
rm -fR arxiv-submission
mkdir arxiv-submission
cp paper.tex authors.tex tools_table.tex naturemag.bst paper.bib figure.pdf ./arxiv-submission/
tar -zcvf arxiv-submission.tar.gz arxiv-submission
paper.ps: paper.dvi
dvips paper
paper.dvi: paper.tex paper.bib
latex paper.tex
bibtex paper
latex paper.tex
latex paper.tex
figures/%.pdf: plot.py
python3 plot.py $*
clean:
rm -f *.log *.dvi *.aux
rm -f *.blg *.bbl
rm -f *.eps *.[1-9]
rm -f src/*.mpx *.mpx
mrproper: clean
rm -f *.ps *.pdf
%.pdf : %.svg
inkscape $< --export-filename=$@