Skip to content

lagerfeuer/office-resume

Repository files navigation

Office Resume

Modern single page LaTeX resume template.

This template is intended to be used as a single page resume. I am sure you can make it work for multiple pages, but there are no instructions or examples.

Showcase

Resume

See the PDF or the All Colors version. resume

Cover Letter

See the PDF or the All Colors version. coverletter

Requirements

  • XeTeX
  • latexmk
  • optional: make

Build

This project can be build using either make, latexmk or a LaTeX Docker image which includes XeTeX and latexmk.

Make

make cover-letter
make resume

# make latexmk continuously build on change
make cont=true coverletter
make cont=true resume

latexmk

latexmk -pdf -output-directory=out/ coverletter.tex
latexmk -pdf -output-directory=out/ resume.tex

# make latexmk continuously build on change
latexmk -pvc -output-directory=out/ coverletter.tex
latexmk -pvc -output-directory=out/ resume.tex

Docker Build

Docker image: lagerfeuer/xetexlive-more:latest

docker run \
  --rm -v $(pwd):/resume --workdir=/resume \
  lagerfeuer/xetexlive-more:latest \
  make coverletter resume

All colors

To see all color options that are included by default, run

make allcolors

and open the files out/resume-allcolors.pdf and out/coverletter-allcolors.pdf.

Changelog

v1.0

Initial release (2020-03-14)