L’idée est de définir un espace blanc avec du css dans le haut de son fichier .Rmd et d’insérer des <span class="whitespace"></span>
entre les sections formant les diapos. Après, il est facile de changer la hauteur de la section pour transformer le tout en un document suivi et enlever l’effet diapo.
<style>
.whitespace {
display:inline-block;
height: 20cm;
}
#TOC {
color: black;
border: none;
}
h1.title, h1, h2, h3, h4, h5, h6 {
margin-top: 0cm;
padding-top: 4cm; /* will go to the top of the padding when clicking sections*/
color: ForestGreen;
font-weight: bold;
}
</style>
En utilisant une table des matières (#TOC
) et un padding sur les titres (h1
, h2
, …), il est également possible de naviguer d’une section/diapo à l’autre. Voir ici pour le code.
x<-runif(10)
x
## [1] 0.11133853 0.87702634 0.46057112 0.91583234 0.73824773 0.88235012
## [7] 0.25052143 0.77461114 0.82535891 0.04066586
library(magrittr)
y <- x %>% mean
y
## [1] 0.5876524
library(dplyr)
z <- x %>% data.frame %>% summarize
z
## data frame with 0 columns and 1 row
library(dplyr)
z <- x %>% data.frame %>% summarize
z
## data frame with 0 columns and 1 row