Skip to content
Snippets Groups Projects
Makefile 779 B
Newer Older
paper.pdf: paper.bbl paper.tex
Bas Nijholt's avatar
Bas Nijholt committed
	pdflatex paper.tex
	pdflatex paper.tex

paper.bbl: paper.tex paper.bib
Bas Nijholt's avatar
Bas Nijholt committed
	pdflatex paper.tex
	bibtex paper.aux

Bas Nijholt's avatar
Bas Nijholt committed
paper.tex: paper.md pandoc/revtex.template
	pandoc \
        --read=markdown-auto_identifiers \
        --filter=pandoc-fignos \
        --filter=pandoc-citeproc \
        --filter=pandoc-crossref \
        --metadata="crossrefYaml=pandoc/pandoc-crossref.yaml" \
        --output=paper.tex \
        --bibliography=paper.bib \
        --abbreviations=pandoc/abbreviations.txt \
        --wrap=preserve \
        --template=pandoc/revtex.template \
        --standalone \
        --natbib \
        --listings \
        paper.md
Bas Nijholt's avatar
Bas Nijholt committed
.PHONY: all clean

clean:
	rm -f paper.pdf paper.aux paper.blg paper.bbl paper.log paper.tex paperNotes.bib