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