Marc Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame^] | 1 | --- |
| 2 | title: "Untitled" |
| 3 | author: Marc Kupietz |
| 4 | institute: "IDS Mannheim" |
| 5 | date: 2024-01-01 |
| 6 | output: |
| 7 | revealjs::revealjs_presentation: |
| 8 | theme: ids |
| 9 | highlight: pygments |
| 10 | self_contained: false |
| 11 | reveal_plugins: |
| 12 | - search |
| 13 | - zoom |
| 14 | - notes |
| 15 | - chalkboard |
| 16 | - menu |
| 17 | reveal_options: |
| 18 | chalkboard: |
| 19 | theme: chalkboard |
| 20 | toggleNotesButton: true |
| 21 | menu: |
| 22 | numbers: true |
| 23 | --- |
| 24 | |
| 25 | ```{r setup, include=FALSE} |
| 26 | knitr::opts_chunk$set(echo = FALSE) |
| 27 | ``` |
| 28 | |
| 29 | ## R Markdown |
| 30 | |
| 31 | This is an R Markdown presentation. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>. |
| 32 | |
| 33 | When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. |
| 34 | |
| 35 | ## Slide with Bullets |
| 36 | ### Subheading |
| 37 | |
| 38 | - Bullet 1 |
| 39 | - Bullet 2 |
| 40 | - Bullet 3 |
| 41 | |
| 42 | <aside class="notes"> |
| 43 | Here are some notes. |
| 44 | </aside> |
| 45 | |
| 46 | ::: footer |
| 47 | Custom footer text |
| 48 | ::: |
| 49 | |
| 50 | ## Slide with R Output |
| 51 | |
| 52 | ```{r cars, echo = TRUE} |
| 53 | summary(cars) |
| 54 | ``` |
| 55 | |
| 56 | ## Slide with Plot |
| 57 | |
| 58 | ```{r pressure} |
| 59 | plot(pressure) |
| 60 | ``` |
| 61 | |