-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathslides.qmd
48 lines (37 loc) · 1.05 KB
/
slides.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
---
title: "R-Markdown Flavored Slides"
subtitle: "Powered by Quarto + Reveal.js"
institute: "ResearchIT, University of Manchester"
author: Martin Herrerias Azcue
date: 2024-11-28
format:
revealjs:
theme: custom.scss
scrollable: true
# filters:
# - include-code-files
# eval: false
echo: true
code-line-numbers: 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
## 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}
#| code-line-numbers: false
1 + 1
```
## Fancier Code Blocks
```{r, filename='fake_script.R'}
#| eval: false
# Multiply two numbers
multiply <- function(a, b) {
return(a * b)
}
multiply(a = 6, b = 7)
```