Dr. Ajay Kumar Koli \(\cdot\) 2nd SARA Bootcamp
“An open-source scientific and technical publishing system to prepare articles & reports; presentations; dashboards; websites; books; and interactive documents.
Official Quarto Website: https://quarto.org/
Artwork from Allison Horst
Artwork from Allison Horst
More YAML options for HTML ouput https://quarto.org/docs/reference/formats/html.html
---
title: "Hello World"
subtitle: "2nd SARA Bootcamp 2026"
author: "Dr. Ajay Kumar Koli"
date: today
format: html
---
## First Time Coding
- Relax
- Patience
## Having Fun
This is *just* the beginning.
It will be **awesome** at the end.
Learn more from this link <https://quarto.org/docs/reference/formats/html.html>.
## Add Image
Markdown basics https://quarto.org/docs/authoring/markdown-basics.html
---
title: "ggplot2 demo"
author: "Norah Jones"
date: "5/22/2021"
format:
html:
code-fold: true
---
## Air Quality
@fig-airquality further explores the impact of temperature on ozone level.
```{r}
#| label: fig-airquality
#| fig-cap: "Temperature and ozone level."
#| warning: false
library(ggplot2)
ggplot(airquality, aes(Temp, Ozone)) +
geom_point() +
geom_smooth(method = "loess")
```R Code Blocks https://quarto.org/docs/computations/r.html
Caution
Not all YAML options are supported across every output format.
