| Format | Download |
|---|---|
| christopher_wilson_resume.pdf | |
| Markdown | christopher_wilson_resume.md |
This résumé is built using the moderncv class for LaTeX. The pdflatex-makefile project is used to typeset the PDF. The instructions below assume macOS with Homebrew or MacPorts installed, but it should be simple to modify them for other platforms.
First, install the MacTeX distribution via Homebrew:
brew install exiftool
brew install --cask mactex-no-guior alternatively, install the TeX Live distribution via MacPorts:
sudo port install texlive texlive-latex-extra exiftoolNext, check out this repository and run the initial setup:
git clone [email protected]:cdwilson/resume.git
cd resume/
make setupTo generate and open the PDF, just run
make viewTo generate a snapshot including the git revision in the file name, run
make snapshotTo generate a camera-ready version with embedded fonts, run
make distillNote: The make process generates revision.tex which defines a new LaTeX
command for the Git short rev:
\newcommand{\Revision}{760e7d3}The following is used to add the Git revision to the PDF title metadata:
\makeatletter
\AtBeginDocument{
\include{revision}
\hypersetup{
pdftitle = {\@firstname{}~\@lastname{} -- \@title{} -- Rev \Revision},
}
}
\makeatother