knitr::opts_chunk$set(
  results='asis', 
  echo = FALSE
)

library(magrittr) # For the pipe
source("cv_printing_functions.r")

# Read in all data and initialize a CV printer object
CV <- create_CV_object(
  data_location = "{{{data_location}}}",  
  pdf_mode = params$pdf_mode
)
# 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>")
}

Aside

{{#use_network_logo}}

# Build interactive network of positions colored by section
# and connected if they occurred in the same year
datadrivencv::build_network_logo(CV$entries_data)

{{/use_network_logo}} {{^use_network_logo}} logo{width=100%} {{/use_network_logo}}

if(params$pdf_mode){
  cat("View this CV online with links at _{{{html_location}}}_")
} else {
  cat("[<i class='fas fa-download'></i> Download a PDF of this CV]({{pdf_location}})")
}

Contact {#contact}

CV %>% print_contact_info()

Language Skills {#skills}

CV %>% print_skill_bars()

Disclaimer {#disclaimer}

Made with the R package pagedown.

The source code is available on github.com/nstrayer/cv.

Last updated on r Sys.Date().

Main

{{{full_name}}} {#title}

# Note the special double pipe so we modify the CV object in place
CV %<>% print_text_block("intro") 

Education {data-icon=graduation-cap data-concise=true}

CV %<>% print_section('education')

Research Experience {data-icon=laptop}

CV %<>% print_section('research_positions')

Industry Experience {data-icon=suitcase}

::: aside

CV %<>% print_text_block('industy_experience_aside')

:::

CV %<>% print_section('industry_positions')




Teaching Experience {data-icon=chalkboard-teacher}

::: aside

CV %<>% print_text_block('teaching_experience_aside')

:::

CV %<>% print_section('teaching_positions')

Selected Data Science Writing {data-icon=chart-line}

::: aside

CV %<>% print_text_block('data_science_writing_aside')

:::

CV %<>% print_section('data_science_writings')

Selected Press (About) {data-icon=newspaper}

CV %<>% print_section('about_me_press')



Selected Press (By) {data-icon=newspaper}

CV %<>% print_section('by_me_press')

Selected Publications, Posters, and Talks {data-icon=book}

CV %<>% print_section('academic_articles')
CV %<>% print_links()


nstrayer/datadrivencv documentation built on June 6, 2020, 5:46 a.m.