brief_entries {vitae} | R Documentation |
CV entries
Description
This function accepts a data object (such as a tibble) and formats the output into a suitable format for the template used. The inputs can also involve further calculations, which will be done using the provided data.
Usage
brief_entries(data, what, when, with, .protect = TRUE)
detailed_entries(data, what, when, with, where, why, .protect = TRUE)
Arguments
data |
A |
what |
The primary value of the entry (such as workplace title or degree). |
when |
The time of the entry (such as the period spent in the role). |
with |
The company or organisation. |
.protect |
When TRUE, inputs to the previous arguments will be protected from being parsed as LaTeX code. |
where |
The location of the entry. |
why |
Any additional information, to be included as dot points. Multiple
dot points can be provided via a list column.
Alternatively, if the same |
Details
All non-data inputs are optional, and will result in an empty space if omitted.
Examples
packages_used <- tibble::tribble(
~ package, ~ date, ~ language, ~ timezone, ~ details,
"vitae", Sys.Date(), "R", Sys.timezone(), c("Making my CV with vitae.", "Multiple why entries."),
"rmarkdown", Sys.Date()-10, "R", Sys.timezone(), "Writing reproducible, dynamic reports using R."
)
packages_used %>%
detailed_entries(what = package, when = date, with = language, where = timezone, why = details)