blob: cdd895da8e7a6d7fbaf8bf77027f2cc2d83673b0 [file] [log] [blame]
Marc Kupietza737b1b2023-10-07 09:32:20 +02001---
Marc Kupietz7c8f7de2023-10-07 11:42:29 +02002title: "IDS theme for revealjs demo"
Marc Kupietza737b1b2023-10-07 09:32:20 +02003author: Marc Kupietz
4institute: "IDS Mannheim"
Marc Kupietz7c8f7de2023-10-07 11:42:29 +02005date: "Mannheim, 2024-01-01"
Marc Kupietza737b1b2023-10-07 09:32:20 +02006output:
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:
Marc Kupietz7c8f7de2023-10-07 11:42:29 +020018 slideNumber: true
Marc Kupietza737b1b2023-10-07 09:32:20 +020019 chalkboard:
20 theme: chalkboard
21 toggleNotesButton: true
22 menu:
23 numbers: true
24---
25
26```{r setup, include=FALSE}
27knitr::opts_chunk$set(echo = FALSE)
28```
29
30## R Markdown
31
32This 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>.
33
34When 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.
35
36## Slide with Bullets
37### Subheading
38
39- Bullet 1
40- Bullet 2
41- Bullet 3
42
43<aside class="notes">
44Here are some notes.
45</aside>
46
47::: footer
48Custom footer text
49:::
50
51## Slide with R Output
52
53```{r cars, echo = TRUE}
54summary(cars)
55```
56
57## Slide with Plot
58
59```{r pressure}
60plot(pressure)
61```
62