]> code.communitydata.science - cdsc_tex.git/blob - paper_template/Makefile
added code to deal with utf8 bibliographies
[cdsc_tex.git] / paper_template / Makefile
1 #!/usr/bin/make
2
3 all: $(patsubst %.tex,%.pdf,$(wildcard *.tex)) 
4 pdf: all
5
6 %.pdf: %.tex
7         recode -d u8..ltex < refs.bib > refs-processed.bib
8         rubber -fd $<
9
10 clean: 
11         rubber -d --clean *.tex
12         rm -f *.tmp
13         rm -f vc
14         rm -f refs-processed.bib
15
16 viewpdf: all
17         evince *.pdf
18
19 spell:
20         aspell -c -t --tex-check-comments -b text.tex
21
22 vc:
23         vc-git
24
25 .PHONY: clean all

Community Data Science Collective || Want to submit a patch?