resume: Resume

View source: R/resume.R

templ_motivatiebriefR Documentation

Resume

Description

A template for Résumé documents

Usage

templ_motivatiebrief()

resume(...)

templ_resume()

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
name your name and surname
contact address, telephone, email, web
profile short profile summary
... the rest

Examples

path = "Untitled"
if (file.exists(path)) {unlink(path, recursive = TRUE)}
rmarkdown::draft(paste0(path, ".Rmd"),
template="resume", 
package="resume", 
create_dir = TRUE, 
edit = FALSE)
if(Sys.info()["sysname"]  != "Windows") {
str = readLines(paste0(path, "/", path, ".Rmd"))
str = gsub("Arial", "Liberation Serif", str )
writeLines(str, paste0(path, "/", path, ".Rmd")) }
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.