-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTest pptx styles.Rmd
74 lines (41 loc) · 1.02 KB
/
Test pptx styles.Rmd
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
---
title: "Untitled"
author: "Jeremy Boyd"
date: "6/7/2022"
output:
powerpoint_presentation:
reference_doc: blank_template.pptx
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
## R Markdown
This example shows how to create pptx output using Microsoft pptx templates. This slideshow is based on the "Blank Presentation" template. You can use any of the Microsoft templates or create your own.
This is an R Markdown presentation. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
## Slide with Bullets
- Bullet 1
- Bullet 2
- Bullet 3
## Slide with R Output
```{r cars, echo = TRUE}
summary(cars)
```
## Slide with Plot
```{r pressure}
plot(pressure)
```
## Two Column Slide
:::::: {.columns}
::: {.column}
Content of the left column.
```{r pressure2}
plot(pressure)
```
:::
::: {.column}
Content of the right column.
```{r pressure3}
plot(pressure)
```
:::
::::::