quartoYAAC provides a convenience function for adding the quarto-yaac template to your current R project. It also includes several functions that converts data frames to the .tex used by the underlying document document class.
You can install the development version of quartoYAAC from GitHub with:
# install.packages("remotes")
remotes::install_github("mps9506/quartoYAAC")To add the template to your current R project:
library(quartoYAAC)
use_quarto_yaac(file_name = "My_CV")If you are in an interactive session, the .qmd file will open.
Specify section headings using H1 (#) and adding the .sectiontitle
class. To include a formatted fontawesome icon in the heading include
the .faIcon class as the second class (replacing “Icon” with the
desired icon name). For example:
# Experience {.sectiontitle .faSuitcase}
See the fontawesome5 Latex package documentation for a full list of FontAwesome icons and names that can be used in this template.
Some functions are included to make formatting sections easier.
print_skills_block(): formatted skills sectionprint_experience_block(): formatted work experience sectionprint_education_block(): formatted education sectionprint_project_block(): formatted projects sectionprint_referee_block(): formatted referee section