Skip to content

Commit

Permalink
sets chalkboard to true and adds slide for executable code #28
Browse files Browse the repository at this point in the history
  • Loading branch information
mxochicale committed Jan 26, 2024
1 parent c8ea316 commit 63c420c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quarto-test/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ project:

website:
favicon: images/favicon.ico
site-url: https://mxochicale.github.io/tools/quarto-test/#
site-url:
search: false
twitter-card:
creator: "@mxochicale"
Expand Down
22 changes: 21 additions & 1 deletion quarto-test/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ format:
revealjs:
slide-number: true
chalkboard:
buttons: false
buttons: true
preview-links: auto
logo: quarto-logo.png
css: quarto-styles.css
Expand All @@ -23,3 +23,23 @@ This presentation will show you examples of what you can do with Quarto and [Rev
- Printing to PDF

...and much more


## Executable Code

```{r}
#| echo: true
#| fig-width: 10
#| fig-height: 4.5
library(ggplot2)
ggplot(mtcars, aes(hp, mpg, color = am)) +
geom_point() +
geom_smooth(formula = y ~ x, method = "loess")
```

::: footer
Learn more: [Executable Code](https://quarto.org/docs/presentations/revealjs/#executable-code)
:::



0 comments on commit 63c420c

Please sign in to comment.