-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquarto_tips.qmd
74 lines (50 loc) · 1.31 KB
/
quarto_tips.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
title: ""
subtitle: "Towards a standardized evaluation of imputation methodology:<br>Potential pitfalls in simulation studies and a proposed course of action"
author: "H.I. Oberman"
institute: "Utrecht University"
format:
revealjs:
logo: logo.png
footer: "Hanne Oberman"
incremental: true
smaller: true
scrollable: true
---
## Quarto
Quarto enables you to weave together content and executable code into a finished presentation. To learn more about Quarto presentations see <https://quarto.org/docs/presentations/>.
## Bullets
When you click the **Render** button a document will be generated that includes:
- Content authored with markdown
- Output from executable code
::: {.incremental}
- test
:::
. . .
pause
## Columns
:::: {.columns}
::: {.column width="40%"}
contents...
:::
::: {.column width="60%"}
contents...
:::
::::
## Footer
- Green ^[A footnote]
- Brown
- Purple
::: aside
Some additional commentary of more peripheral interest.
:::
## Code
When you click the **Render** button a presentation will be generated that includes both content and the output of embedded code. You can embed code like this:
```{r}
1 + 1
```
## Figures
Referencing figures:
![Howard is glamorous](images/howard-glamour.jpg){#fig-glamour}
Resize resp. to fit entire slide:
![](image.png){.r-stretch}