knitr::opts_chunk$set( results='asis', echo = FALSE ) Offline <- FALSE library(magrittr) # For the pipe devtools::load_all(path = "../") # Read in all data and initialize a CV printer object if(Offline){ load(file = "cache/CV.rda") } else { CV <- create_CV_object( data_location = "https://docs.google.com/spreadsheets/d/1xBOxRsdm2hlpK8T4v46Rb7BZaHfNCYGR03h95_Hfqi0/edit?usp=sharing", pdf_mode = params$pdf_mode, sheet_is_publicly_readable = FALSE) save(CV, file = "cache/CV.rda") }
# When in pdf export mode the little dots are unaligned, so fix that with some conditional CSS. if(params$pdf_mode) { cat(" <style> :root{ --decorator-outer-offset-left: -6.5px; } </style>") }
if(params$pdf_mode){ cat("View this CV online with links at _nickstrayer.me/datadrivencv/_") } else { cat("[<i class='fas fa-download'></i> Download a PDF of this CV](https://github.com/nstrayer/cv/raw/master/strayer_cv.pdf)") }
Made with the R package pagedown.
Last updated on r Sys.Date()
.
knitr::include_graphics("figures/sign.png")
CV %<>% print_text_block('intro')
CV %<>% print_section(section_id = 'education')
CV %<>% print_section(section_id = 'academic')
::: aside
CV %<>% print_text_block(label = 'working_experience_aside')
:::
CV %<>% print_section(section_id = 'working')
::: aside
CV %<>% print_text_block('educational_experience_aside')
:::
CV %<>% print_section('educational', glue_template = "compact")
::: aside
CV %<>% print_text_block('publications_aside')
:::
CV %<>% print_section('publications', glue_template = "compact")
::: aside
CV %<>% print_text_block('software_aside')
:::
CV %<>% print_section('software', glue_template = "compact")
CV %<>% print_section('presentation_poster', glue_template = "compact")
CV %<>% print_links()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.