-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.Rmd
executable file
·56 lines (40 loc) · 1.46 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
51
52
53
54
55
56
---
title: "A Test Bookdown Book"
author: "Philippe Grosjean & Guyliann Engels"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
output:
bookdown::gitbook:
info: yes
includes:
in_header: header.html
after_body: footer.html
documentclass: book
bibliography: [book.bib, packages.bib]
biblio-style: apalike
link-citations: yes
github-repo: phgrosjean/bookdown-test
url: 'http\://phgrosjean.sciviews.org/bookdown-test/'
description: "Template for a learnitdown-enhanced bookdown document."
cover-image: "images/front-cover.png"
---
# Preamble {-}
<!-- Compile the bibliography from different sources -->
```{r setup, include=FALSE, cache=FALSE}
knitr::write_bib(c(.packages(), 'bookdown', 'knitr', 'rmarkdown'), 'packages.bib')
```
<!-- Diagnose the user login status, example in English and in French -->
Information about connected user build be {learnitdown} automatically:
`r learnitdown::diagnose_login(lang = "en")`
The same one in French\ :
`r learnitdown::diagnose_login(lang = "fr")`
This is just a demo of the various possibilities of our {learnitdown}-extended bookdown format. It is intended to be used with the SciViews Box `r learnitdown$svbox`.
![](images/front-cover.png)
----
_The content of this book is distributed under a [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/deed.fr) license._
----
<details><summary>System information</summary>
```{r, class.source='hidden-code'}
sessioninfo::session_info()
```
</details>