Skip to content

Instantly share code, notes, and snippets.

@chadluo
Last active December 12, 2023 05:05
Show Gist options
  • Save chadluo/238798f3b678434c374eb4b909054181 to your computer and use it in GitHub Desktop.
Save chadluo/238798f3b678434c374eb4b909054181 to your computer and use it in GitHub Desktop.
resume template & builder
# usage:
# $ make
john_doe.pdf: resume.md
pandoc -o john_doe.pdf resume.md
resume.md:
sudo apt update
sudo apt install pandoc texlive-base texlive-latex-extra
echo "$$SAMPLE_MD" > resume.md
define SAMPLE_MD
---
title-meta: 'John Doe Resume'
author-meta: 'John Doe'
geometry:
- a4paper
header-includes:
- \\thispagestyle{empty} # don't show page number
---
# John Doe
[`john.doe@example.com`](mailto:john.doe@example.com)
\\bigskip
## Experiences
### Computer Operator · Random Company \hfill 2010-01 --
Operated computers.
\\bigskip
## Education
### Bachlor of Computer Science · Random University \hfill 2006 -- 2009
endef
export SAMPLE_MD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment