-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate_xarigan_amarelo.Rmd
More file actions
90 lines (66 loc) · 1.7 KB
/
Copy pathtemplate_xarigan_amarelo.Rmd
File metadata and controls
90 lines (66 loc) · 1.7 KB
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
---
title: "Presentation Ninja"
subtitle: "⚔️ xaringan +<br/>😎 xaringanthemer"
author:
- "Yihui Xie"
- "Garrick Aden-Buie"
date: '`r Sys.Date()`'
output:
xaringan::moon_reader:
lib_dir: libs
css: xaringan-themer.css
nature:
highlightStyle: github
highlightLines: true
ratio: "16:9"
countIncrementalSlides: false
---
```{r setup, include=FALSE}
options(htmltools.dir.version = FALSE)
```
```{css, echo=FALSE}
li::marker {
content: "• ";
color: #EFBE43;
}
```
```{r xaringan-themer, include=FALSE, warning=FALSE}
dark_yellow <- "#EFBE43"
light_yellow <- "#FDF7E9"
gray <- "#333333"
blue <- "#4466B0"
library(xaringanthemer)
style_duo(
# colors
primary_color = light_yellow,
secondary_color = dark_yellow,
header_color = gray,
text_color = gray,
code_inline_color = colorspace::lighten(gray),
text_bold_color = colorspace::lighten(gray),
link_color = blue,
title_slide_text_color = blue,
# fonts
header_font_google = google_font("Martel", "300", "400"),
text_font_google = google_font("Lato"),
code_font_google = google_font("Fira Mono")
)
```
---
class: center, middle
# xaringan
### /ʃæ.'riŋ.ɡæn/
---
class: inverse, center, middle
# Get Started
---
# Hello World
Install the **xaringan** package from [Github](https://github.com/yihui/xaringan):
```{r eval=FALSE, tidy=FALSE}
devtools::install_github("yihui/xaringan")
```
--
You are recommended to use the [RStudio IDE](https://www.rstudio.com/products/rstudio/), but you do not have to.
- Create a new R Markdown document from the menu `File -> New File -> R Markdown -> From Template -> Ninja Presentation`;<sup>1</sup>
--
- Click the `Knit` button to compile it;