My pagedown rendered CV
This repo contains the source-code and results of my CV built with the pagedown package and a modified version of the 'resume' template.
The main files are:
index.Rmd
: Source template for the cv, contains a variablePDF_EXPORT
in the header that changes styles for pdf vs html.index.html
: The final output of the template when the header variablePDF_EXPORT
is set toFALSE
. View it at nickstrayer.me/cv.strayer_cv.pdf
: The final exported pdf as rendered by Chrome on my mac laptop. Links are put in footer and notes about online version are added.resume.Rmd
: Source template for single page resume.strayer_resume.pdf
: Result for single page resume.positions.csv
: A csv with columns encoding the various fields needed for a position entry in the CV. A columnsection
is also available so different sections know which rows to use.css/
: Directory containing the custom CSS files used to tweak the default 'resume' format from pagedown.
Want to use this to build your own CV/resume?
- Fork, clone, download the zip of this repo to your machine with RStudio.
- Go through and personalize the supplementary text in the Rmd you desire (
index.Rmd
for CV,resume.Rmd
for resume). - Using your spreadsheet editor of choice, replace the rows of
positions.csv
with your positions. - Print each unique
section
(as encoded in thesection
column ofpositions.csv
) in your.Rmd
with the commandposition_data %>% print_section('education')
.