Learn R Programming

resumer (version 0.0.1)

generateListing: generateListing

Description

Generate LaTeX code for job info

Usage

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

Value

  • LaTeX code for a subsection in the resume

Details

Given a subsetted dataset of just one job this generates LaTeX code. Given jobname and company name, print out the section.

See Also

link{generateMultipleListings} generateSection

Examples

Run this code
library(dplyr)
oneJob <- jobs %>% filter(JobName=='Pied Piper', Company=='Tech Central')
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')

Run the code above in your browser using DataLab