---
title: "Document Title"
author: "Matt"
format: 
  html:
    embed-resources: true
    toc: true
    code-fold: true
    code-tools: true
---

<!--
embed-resources: true
-->

<!--
toc: true
-->

<!-- 
format:
  html:
    code-fold: true 
    -->

<!-- code-tools: true -->

<!--
format:
  html: default
  pdf: default
  -->

Welcome to the world of quarto.

![https://quarto.org/quarto.png](https://quarto.org/quarto.png)

## Heading

Text

### Default echo

```{r}
x <- rnorm(50)
hist(x)
```

### Overriding echo

```{r}
#| echo: true
x <- rnorm(50)
hist(x)
```

---

## Math

It can be inline $\alpha = 5$ or it's own line.

$$\hat{\beta} = 2$$

Cool.

## Tabsets

::: {.panel-tabset}
## Tab 1

The tab 1 contents

## Tab 2

Tab 2

```{r}
hist(rnorm(50))
```

:::