curriculum_vitae: Resume Templates

View source: R/curriculum_vitae.R

curriculum_vitaeR Documentation

Resume Templates

Description

A template for Curriculum Vitae documents

Usage

curriculum_vitae(...)

templ_curriculum_vitae()

Arguments

...

Arguments to rmarkdown::pdf_document.

About YAML header fields

This section documents some of the YAML fields to know for this template.

FIELD DESCRIPTION
title title of the document, appears on first row
author name of the author, appears on second row
affiliation institutional affiliation, appears on third row
email your email, for the fourth row

Examples

path = "Untitled"
if (file.exists(path)) {unlink(path, recursive = TRUE)}
rmarkdown::draft(paste0(path, ".Rmd"),
template="curriculum_vitae", 
package="resume", 
create_dir = TRUE, 
edit = FALSE)
rmarkdown::render(paste0(path, "/", path, ".Rmd"))
if (file.exists(path)) {unlink(path, recursive = TRUE)}

JacekPardyak/resume documentation built on Aug. 28, 2023, 7:50 a.m.