-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.Rmd
50 lines (41 loc) · 1.24 KB
/
index.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
---
title: "Publications reproductibles avec RMarkdown"
description: |
Ce site présente les supports pour la formation rmarkdown du MTES
site: distill::distill_website
---
```{r, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(gouvdown.fonts)
# Learn more about creating websites with Distill at:
# https://rstudio.github.io/distill/website.html
library(htmltools)
source("R/create_proj_card.R")
```
`r emo::ji("warning")` Site en construction `r emo::ji("warning")`
## Le document de référence
- [Le document de référence de la formation](book/index.html)
## Déroulé
## Déroulé
```{r}
create_proj_card(
img_src = "slides/www/rmarkdown-card.png",
url = "atelier1.html",
title = "Atelier 1 : introduction à Rmarkdown",
text = "Comprendre ce qu'est Rmarkdown",
text2=""
)
create_proj_card(
img_src = "slides/www/parametres-card.png",
url = "atelier2.html",
title = "Atelier 2 : paramétrer un rapport Rmarkdown",
text = "Apprendre comment paramétrer un rapport",
text2=""
)
create_proj_card(
img_src = "slides/www/templatespublications-card.png",
url = "atelier3.html",
title = "Atelier 3 : Découvrir les templates adaptés aux publications",
text = "Découvrir bookdown, pagedown et Officer",
text2=""
)