1
0

initial import of UW matrix letterhead template

This commit is contained in:
2018-02-18 15:59:49 -08:00
commit 2be6b8a43a
17 changed files with 241 additions and 0 deletions

18
Makefile Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/make
all: $(patsubst %.tex,%.pdf,$(wildcard *.tex))
%.pdf: %.tex
latexmk -f -xelatex $<
clean:
latexmk -C *.tex
rm -f *.tmp *.run.xml
viewpdf: all
evince *.pdf
pdf: all
.PHONY: clean all