-
Notifications
You must be signed in to change notification settings - Fork 32
/
session3.Rmd
408 lines (263 loc) · 5.6 KB
/
session3.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
---
title: "Communicating with Data via R markdown"
subtitle: "\u2728 Pretty Presentations \u2728"
author: "Emi Tanaka"
email: "[email protected]"
date: "4th October 2019 | COMBINE | Sydney, Australia"
pdflink: "link"
titleslide_bgimg: "images/bg3.jpg"
color_theme: "#FC427B"
output:
xaringan::moon_reader:
css: [ninjutsu, "assets/animate.css", "assets/cssgrid.css", "assets/custom.css", ]
self_contained: false # if true, fonts will be stored locally
seal: false # show a title slide with YAML information
#yolo: false # show Karl randomly
chakra: 'libs/remark-latest.min.js'
beforeInit: "assets/custom.js"
lib_dir: libs
includes:
in_header: "assets/custom.html"
# before_body:
after_body: "assets/remarkjs_extended.html"
# includes
mathjax: "assets/mathjax-local/MathJax.js?config=TeX-AMS-MML_HTMLorMML"
nature:
# autoplay: 100 # in milliseconds to play next slide
# coundown: 100 # to display on each slide (TRUE if autoplay on)
# titleSlideClass: c("center", "middle", "inverse")
highlightStyle: dark # [arta, ascetic, dark, default, far, github, googlecode, idea, ir-black, magula, monokai, rainbow, solarized-dark, solarized-light, sunburst, tomorrow, tomorrow-night-blue, tomorrow-night-bright, tomorrow-night, tomorrow-night-eighties, vs, zenburn.]
highlightLanguage: r # no-highlight to disable
highlightLines: true
highlightSpans: false # true: use `backticks` as delimiters.
countIncrementalSlides: false
slideNumberFormat: '%current%/%total%'
navigation:
scroll: false # disable scrolling to navigate slides
touch: true
click: false
ratio: '16:9' # ['4:3', '13:9']
---
```{r titleslide, child="scripts/titleslide.Rmd"}
```
[Background photo by Adam H. Sparks]{.pos .font_small top:5px;left:5px;}
---
# HTML Slides from Rmd
::: grid
::: item
* There are a number of ways to make html slides in Rmd including `ioslides` and `slidy`.
* My favorite one is `xaringan` `r emo::ji("package")`!
* It's highly customisable.
* These slides are made by `xaringan`!
* Note that it uses `remark.js` to render the final html instead of `pandoc`!
::::
::: item
<iframe src="https://slides.yihui.name/xaringan/" height = "450px" width = "600px"></iframe>
https://slides.yihui.name/xaringan
:::
:::
---
class: font_smaller
# `xaringan` easy slide separator `---`
::: grid
::: item
```markdown
---
title: "My first xaringan slide"
subtitle: "Not!"
author: "Emi Tanaka"
date: "4th October 2019"
output:
xaringan::moon_reader
---
# Slide after title slide
*---
# Next slide
Can use **markdown**!
```
:::
::: item
<iframe src="output/xaringan-slide-separator-demo.html" height = "450px" width = "600px"></iframe>
:::
:::
::: { .bubble1 .pos width:300px;left:31%;top:35%;}
YAML information used for title slide
:::
::: { .bubble1 .pos width:300px;left:31%;bottom:11%;}
No spaces after <br>`---`!
:::
---
# HTML/CSS
But you want to customise more?
You do need to be a ninja to do that.
Or know a bit about HTML/CSS.
::: grid
::: item
HTML
```html
<div class="bg-red">
This creates a box <br>
with red background.
</div>
```
:::
::: item
CSS
```css
.bg-red {
background-color: red;
}
```
:::
:::
::: {.pos top:1%;left:50%; }
OUTPUT
<div class="bg-red">
This creates a box <br>
with red background.
</div>
:::
---
# HTML/CSS II
But the box and text look too squished.
I increase the padding here.
<br><br>
::: grid
::: item
HTML
```html
<div class="bg-red">
This creates a box <br>
with red background.
</div>
```
:::
::: item
CSS
```css
.bg-red {
background-color: red;
* padding: 20px;
}
```
:::
:::
::: {.pos top:1%;left:55%; }
OUTPUT
<div class="bg-red" style="padding: 20px;">
This creates a box <br>
with red background.
</div>
:::
---
# HTML/CSS III
But a white text suits better.
<br><br>
::: grid
::: item
HTML
```html
<div class="bg-red">
This creates a box <br>
with red background.
</div>
```
:::
::: item
CSS
```css
.bg-red {
background-color: red;
padding: 20px;
* color: white;
}
```
:::
:::
::: {.pos top:1%;left:55%; }
OUTPUT
<div class="bg-red" style="padding:20px;color:white;">
This creates a box <br>
with red background.
</div>
:::
---
# HTML/CSS IV
In contrast, `span` is "inline".
<br><br>
::: grid
::: item
HTML
```html
*<span class="bg-red">
This creates a box <br>
with red background.
*</span>
```
:::
::: item
CSS
```css
.bg-red {
background-color: red;
padding: 20px;
color: white;
}
```
:::
:::
::: {.pos top:1%;left:55%; }
OUTPUT
<span class="bg-red" style="padding:20px;color:white;">
This creates a box <br>
with red background.
</span>
:::
---
# `remark.js`: div and span classes
`remark.js` makes it easier to write `div` and `span` elements.
::: grid
::: item bg-indigo white
Text in new line
```markdown
.bg-red[
Some text
]
```
is converted to
```markdown
<div class="bg-red">
Some text
</div>
```
:::
::: item bg-green white
Placing `[` `]` in the same line
```markdown
.bg-red[Some text]
```
results in
```markdown
<span class="bg-red">
Some text
</span>
```
:::
:::
---
# `remark.js`: specify class to a whole slide
::: grid
::: item
<iframe class="zoom-frame" src="exercises/demo/demo-xaringan.Rmd" height="500px" width = "280px"></iframe>
:::
::: item
<iframe src="exercises/demo/demo-xaringan.html" height = "450px" width = "600px" "></iframe>
:::
:::
---
```{r checklist, echo = FALSE}
checklist <- c("Be able to make slides from Rmd",
"Change the background color of a slide")
```
```{r endslide, child="scripts/endslide.Rmd"}
```