From: Don Armstrong Date: Sat, 23 Aug 2014 16:04:12 +0000 (-0700) Subject: add start of debconf14 presentation X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=12f451f687b588f31a96de24b678c83688139415;p=debbugs-presentations.git add start of debconf14 presentation --- 12f451f687b588f31a96de24b678c83688139415 diff --git a/debconf14/Makefile b/debconf14/Makefile new file mode 100644 index 0000000..b244505 --- /dev/null +++ b/debconf14/Makefile @@ -0,0 +1,19 @@ +#!/usr/bin/make -f + +all: debbugs_presentation.pdf + +R ?= R + +%.pdf: %.svg + inkscape -A $@ $< + pdfcrop $@ + mv $(dir $@)*-crop.pdf $@ + +%.png: %.svg + inkscape -e $@ -d 300 $< + +%.tex: %.Rnw + $(R) --encoding=utf-8 -e "library('knitr'); knit('$<')" + +%.pdf: %.tex $(wildcard *.bib) $(wildcard *.tex) + latexmk -pdf -pdflatex='xelatex -interaction=nonstopmode %O %S' -bibtex -use-make $<