Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 2.21 KB

README.md

File metadata and controls

49 lines (32 loc) · 2.21 KB

Description

This template can be used to make a summary using Quarto and R. The following softwares/packages are needed:

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.

Preview

readme1 readme2 readme3 readme4

Installation

In RStudio

  1. File → New Project → Version Control → Git

  2. Create Project

  3. Install the two required R packages

    if (!require("tibble")) install.packages("tibble")
    if (!require("flextable")) install.packages("flextable")
    
  4. Open and edit resume.qmd

  5. Render

  6. Open resume.html to see your resume

References

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/.