| Marc Kupietz | 59e95a6 | 2026-08-29 10:19:05 +0300 | [diff] [blame^] | 1 | --- |
| 2 | title: "Minimal Deck" |
| 3 | subtitle: "smallest useful revealjs.ids presentation" |
| 4 | author: "John Doe" |
| 5 | date: "1 January 2026" |
| 6 | # linked QR code in the top left of the title slide: |
| 7 | website: "https://www.ids-mannheim.de/digspra/" |
| 8 | # second institution logo (top right of every slide, next to the IDS logo); |
| 9 | # funder logo (bottom left of the title slide). Local files are embedded: |
| 10 | # partner_logo: "partner-logo.svg" |
| 11 | # funder_logo: "funder-logo.svg" |
| 12 | output: revealjs.ids::revealjs_presentation |
| 13 | --- |
| 14 | |
| 15 | ```{r setup, include=FALSE} |
| 16 | knitr::opts_chunk$set(echo = TRUE) |
| 17 | ``` |
| 18 | |
| 19 | # Introduction |
| 20 | |
| 21 | ## Markdown basics |
| 22 | |
| 23 | - Some **bold** text in the IDS style |
| 24 | - Incremental points with `{.fragment}` or global `incremental: true` |
| 25 | |
| 26 | <!-- 00:30 --> |
| 27 | |
| 28 | ::: notes |
| 29 | This slide has speaker notes (press `s` for the speaker view) and a |
| 30 | half-minute time budget from the timing comment above -- watch the pacing |
| 31 | timer. |
| 32 | ::: |
| 33 | |
| 34 | # Results |
| 35 | |
| 36 | ## Data frames look reasonable by default |
| 37 | |
| 38 | ```{r} |
| 39 | head(cars, 6) |
| 40 | ``` |
| 41 | |
| 42 | ## And plots as usual |
| 43 | |
| 44 | ```{r pressure, fig.height=5, fig.width=10, message=FALSE} |
| 45 | plot(pressure) |
| 46 | ``` |
| 47 | |
| 48 | # Misc |
| 49 | |
| 50 | ## Links |
| 51 | |
| 52 | A linked QR code, e.g. for supplementary material, can be put on any slide |
| 53 | with inline R code: `r revealjs.ids::qrlink("https://www.ids-mannheim.de/")` |