blob: ca5e59534ed5c36e5d9ad9f8e6ae2c5cbf56cd3e [file] [log] [blame]
Marc Kupietz59e95a62026-08-29 10:19:05 +03001---
2title: "Minimal Deck"
3subtitle: "smallest useful revealjs.ids presentation"
4author: "John Doe"
5date: "1 January 2026"
6# linked QR code in the top left of the title slide:
7website: "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"
12output: revealjs.ids::revealjs_presentation
13---
14
15```{r setup, include=FALSE}
16knitr::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
29This slide has speaker notes (press `s` for the speaker view) and a
30half-minute time budget from the timing comment above -- watch the pacing
31timer.
32:::
33
34# Results
35
36## Data frames look reasonable by default
37
38```{r}
39head(cars, 6)
40```
41
42## And plots as usual
43
44```{r pressure, fig.height=5, fig.width=10, message=FALSE}
45plot(pressure)
46```
47
48# Misc
49
50## Links
51
52A linked QR code, e.g. for supplementary material, can be put on any slide
53with inline R code: `r revealjs.ids::qrlink("https://www.ids-mannheim.de/")`