Daniela Palleschi
  • D. Palleschi
  • Source Code
  1. Basics
  2. Quarto
  • Preface
  • Basics
    • Quarto
    • R for Reproducibility
    • UpdateR and (re-)Install Packages
    • Data dictionary
    • Zotero
  • Next level
    • Git and GitHub
    • Docker
    • Quarto and Git Pages
    • Writing
    • Custom ggplot2 themes

On this page

  • Quarto
    • Quarto versus Rmarkdown
  1. Basics
  2. Quarto

Quarto

Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see https://quarto.org.

Quarto versus Rmarkdown

Important differences I’ve noticed:

  • YAML:
    • Rmd output = format in Quarto
    • Rmd html_document = html in Quarto
Source Code
---
format: html
---

# Quarto

Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.

## Quarto versus Rmarkdown

Important differences I've noticed:

- `YAML`:
  + Rmd `output` = `format` in Quarto
  + Rmd `html_document` = `html` in Quarto