-
Notifications
You must be signed in to change notification settings - Fork 2
/
template_powerpoint.qmd
85 lines (59 loc) · 1.22 KB
/
template_powerpoint.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
75
76
77
78
79
80
81
82
83
84
85
---
title: "Title"
subtitle: "Subtitle"
author: "First Author"
lang: fr
date: today
date-format: long
format: inrae-pptx
---
# Header 1
## Header 2
### Header 3
Normal text
**Bold text**
*italics*
~~strikethrough~~
[links](https://www.xaringan.gallery/).
## Code expressions
Code chunks and output
```{r}
#| echo: true
lm(mpg ~ disp, data = mtcars)
```
## Block quotes
> Dorothy followed her through many of the beautiful rooms in her
> castle.
## Ordered list
1. First item
2. Second item
3. Third item
1. Indented item
2. Indented item
4. Fourth item
## Unordered list
- First item
- Second item
- Third item
- Fourth item
## Callouts
::: {.callout-note}
A note
:::
::: {.callout-tip}
A tip
:::
::: {.callout-important}
An important message
:::
## Tables
+-----------+-----------+--------------------+
| Fruit | Price | Advantages |
+===========+===========+====================+
| Bananas | $1.34 | - built-in wrapper |
| | | - bright color |
+-----------+-----------+--------------------+
| Oranges | $2.10 | - cures scurvy |
| | | - tasty |
+-----------+-----------+--------------------+
: Sample grid table.