-
Notifications
You must be signed in to change notification settings - Fork 0
/
ioslides.Rmd
94 lines (61 loc) · 3.19 KB
/
ioslides.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
---
title: "ioslides"
author: "Jeroen Minderman"
date: "28/10/2019"
output:
ioslides_presentation:
widescreen: yes
slidy_presentation: default
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
## R Markdown
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>.
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document.
## 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)
```
## An extra slide
### You can use RMarkdown syntax to format text!
Like write in *italics*.
Or you **can make things bold**.
***Or even both***.
It is also relatively easy to make your text <span style="color:red">colourful</span>.
Or include links: [like this one](http://www.stir.ac.uk).
## This is a slide with smaller text! {.smaller}
Itty bitty!
Imagine was you removal raising gravity. Unsatiable understood or expression dissimilar so sufficient. Its party every heard and event gay. Advice he indeed things adieus in number so uneasy. To many four fact in he fail. My hung it quit next do of. It fifteen charmed by private savings it mr. Favourable cultivated alteration entreaties yet met sympathize.
## Two Column Layout {.columns-2}
Imagine was you removal raising gravity. Unsatiable understood or expression dissimilar so sufficient. Its party every heard and event gay. Advice he indeed things adieus in number so uneasy. To many four fact in he fail. My hung it quit next do of. It fifteen charmed by private savings it mr. Favourable cultivated alteration entreaties yet met sympathize.
- Bullet 1
- Bullet 2
- Bullet 3
- Bullet 4
## Another possible two-column option
<div style="float: left; width: 45%; padding: 5px;">
This is on the left.
Insipidity the sufficient discretion imprudence resolution sir him decisively. Proceed how any engaged visitor. Explained propriety off out perpetual his you. Feel sold off felt nay rose met you. We so entreaties cultivated astonished is. Was sister for few longer mrs sudden talent become. Done may bore quit evil old mile. If likely am of beauty tastes.
</div>
<div style="float: right; width: 45%; padding: 5px;">
And this is on the right.
Fat son how smiling mrs natural expense anxious friends. Boy scale enjoy ask abode fanny being son. As material in learning subjects so improved feelings. Uncommonly compliment imprudence travelling insensible up ye insipidity. To up painted delight winding as brandon.
</div>
## Some different options for including pictures
![caption](https://live.staticflickr.com/71/217118881_af881f9f5f_c.jpg)
## Make it a bit smaller?
![caption](https://live.staticflickr.com/71/217118881_af881f9f5f_c.jpg){#id .class width=50%}
## Image via R code, using Knitr's **include_graphics**
```{r, echo=FALSE, fig.cap="caption", out.width = '75%'}
knitr::include_graphics("https://live.staticflickr.com/71/217118881_af881f9f5f_c.jpg")
```
##