generateSection: generateSection

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/SectionCreation.r

Description

Generate an entire job/research section

Usage

1
2
3
4
5
6
7
generateSection(
  data,
  jobList,
  sectionName = "Relevant Experience",
  type = "Job",
  specialChars = "&"
)

Arguments

data

data.frame holding the info for one job

jobList

A list of jobs, each of which is a list where the first element is the Company, the second is the JobName and the third is a vector of BulletName's

sectionName

Name to be printed at the top of the section

type

The type of section to build; defaults to 'Job', the other currently supported value is 'Research'

specialChars

Vector of characters that need to be double-backslashed escaped

Details

Given a jobs data.frame and a job list generate all the code needed for a jobs section

Value

All the text needed for a job section

Author(s)

Jared P. Lander

See Also

generateListing generateMultipleListings

Examples

1
2
3
4
5
6
7
8
data(jobs)
jobList <- list(
     list("Pied Piper", "Tech Startup", c(1, 3)),
     list("Goliath National Bank", "Bank Intern", 1:3),
     list("Surveyors Inc", "Survery Stats", 1:2)
)

generateSection(jobs, jobList)

resumer documentation built on Feb. 12, 2021, 5:06 p.m.