Skip to content

Commit

Permalink
new style
Browse files Browse the repository at this point in the history
  • Loading branch information
rodluger committed Nov 12, 2017
1 parent b893c45 commit 29badcb
Show file tree
Hide file tree
Showing 7 changed files with 595 additions and 233 deletions.
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
MIT License

Copyright (c) 2012, Adrien Friggeri
Copyright (c) 2017 Rodrigo Luger

Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
15 changes: 8 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
LATEX = pdflatex
LATEX = xelatex
BIB = biber
BASH = bash -c
ECHO = echo
RM = rm -rf
Expand All @@ -8,17 +9,17 @@ RM_TMP = ${RM} $(foreach suff, ${TMP_SUFFS}, *.${suff})

CHECK_RERUN = grep Rerun $*.log

ALL_FILES = cv.pdf publications.pdf cv_pubs.pdf
ALL_FILES = cv.pdf cv_pubs.pdf

all: ${ALL_FILES}

%.pdf: %.tex cvstyle.tex publications.tex pubs.json
${LATEX} $<
${LATEX} $<
cv.pdf: cv.tex luger-cv.cls
${LATEX} cv
${LATEX} cv

cv_pubs.pdf: cv.tex publications.tex cvstyle.tex pubs.json
cv_pubs.pdf: cv.tex luger-cv.cls pubs.tex
${LATEX} -jobname=cv_pubs "\def\withpubs{}\input{cv}"
${LATEX} -jobname=cv_pubs "\def\withpubs{}\input{cv}"

clean:
${RM_TMP} ${ALL_FILES}
${RM_TMP} ${ALL_FILES}
Loading

0 comments on commit 29badcb

Please sign in to comment.