-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
template.qmd
52 lines (40 loc) · 958 Bytes
/
template.qmd
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
---
title: "A Title"
subtitle: "A Subtitle"
author: Mickaël Canouil, *Ph.D.*
institute: Inserm U1283 / CNRS UMR8199 / Institut Pasteur de Lille / Université de Lille
date: today
date-format: "dddd, [the] D[<sup style='font-size:65%;font-style:italic;'>th</sup>] [of] MMMM, YYYY"
embed-resources: false
format: coeos-revealjs
---
```{r}
#| include: false
sysfonts::font_add_google("Alegreya Sans", "Alegreya Sans", regular.wt = 300)
showtext::showtext_auto()
source("_extensions/mcanouil/coeos/setup-ggplot2-coeos.R")
```
## Introduction
### Subtitle
`some code` and some text.
A URL [mickael.canouil.fr](https://mickael.canouil.fr/).
```{r}
#| echo: true
1 + 1
```
```{r}
#| echo: true
x <- 1
y <- x + 1
y
```
## GGPLOT2 With `code`
```{r}
#| echo: true
library(ggplot2)
ggplot(mtcars, aes(wt, mpg)) + geom_point()
```
# PART 1 With `code` {.center .center-x}
## New slide
With only text
{{< include _extensions/mcanouil/coeos/_about.qmd >}}