generateListing: generateListing

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

View source: R/ListingCreation.r

Description

Generate LaTeX code for job info

Usage

1
generateListing(data, bullets, type = "Job", specialChars = "&")

Arguments

data

data.frame holding the info for one job

bullets

The BulletName's for the desired rows

type

The type of subsection 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 subsetted dataset of just one job this generates LaTeX code. Given jobname and company name, print out the section.

Value

LaTeX code for a subsection in the resume

Author(s)

Jared P. Lander

See Also

generateMultipleListings generateSection

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
library(dplyr)

jobs <- read.csv(system.file('examples/Jobs.csv', package='resumer'))
oneJob <- jobs %>% filter(Company=='Pied Piper', JobName=='Tech Startup')
generateListing(oneJob)
generateListing(oneJob, bullets=c(1, 3))

oneResearch <- jobs %>% filter(JobName=='Oddie Research', Company=='Hudson University')
generateListing(oneResearch, bullets=4, type='Research')
generateListing(oneResearch, bullets=4:5, type='Research')

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