Last active
December 12, 2023 05:05
-
-
Save chadluo/238798f3b678434c374eb4b909054181 to your computer and use it in GitHub Desktop.
resume template & builder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |
[`[email protected]`](mailto:[email protected]) | |
\\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