This template can be used to make a summary using Quarto and R. The following softwares/packages are needed:
- R version 4.1.0 (R Core Team, 2021)
- Quarto (>= 1.3.186) (Allaire, 2022)
- Flextable R package (>= 0.8.5) (Gohel and Skintzos, 2023)
- Tibble R package (>= 3.1.8) (Müller and Wickham, 2022)
All the editable parts are in resume.qmd. Each element in the first three sections are formatted using tables thanks to the flextable R package. Two R fonctions are used (exp_pro()
and exp_school()
) to arrange the table to the desired result.
-
File → New Project → Version Control → Git
- Repository URL: https://github.com/busemorose/resume_quarto.git
-
Create Project
-
Install the two required R packages
if (!require("tibble")) install.packages("tibble") if (!require("flextable")) install.packages("flextable")
-
Open and edit
resume.qmd
-
Render
-
Open
resume.html
to see your resume
David Gohel and Panagiotis Skintzos (2023). flextable: Functions for Tabular Reporting. R package version 0.8.5. https://CRAN.R-project.org/package=flextable
JJ Allaire (2022). quarto: R Interface to 'Quarto' Markdown Publishing System. R package version 1.2. https://CRAN.R-project.org/package=quarto
Kirill Müller and Hadley Wickham (2022). tibble: Simple Data Frames. R package version 3.1.8. https://CRAN.R-project.org/package=tibble
R Core Team (2021). R: A language and environment for statistical computing. R Foundation for Statistical Computing, Vienna, Austria. URL https://www.R-project.org/.