generateListing {resumer} | R Documentation |
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 |
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
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')
[Package resumer version 0.0.5 Index]