all set-up to prepare ultimate test before last reports
[talweg.git] / pkg / vignettes / talweg.Rmd
1 ---
2 title: "Vignette Title"
3 author: "Vignette Author"
4 date: "`r Sys.Date()`"
5 output: rmarkdown::html_vignette
6 vignette: >
7 %\VignetteIndexEntry{Vignette Title}
8 %\VignetteEngine{knitr::rmarkdown}
9 %\VignetteEncoding{UTF-8}
10 ---
11
12 Vignettes are long form documentation commonly included in packages. Because they are part of the distribution of the package, they need to be as compact as possible. The `html_vignette` output type provides a custom style sheet (and tweaks some options) to ensure that the resulting html is as small as possible. The `html_vignette` format:
13
14 - Never uses retina figures
15 - Has a smaller default figure size
16 - Uses a custom CSS stylesheet instead of the default Twitter Bootstrap style
17
18 ## Vignette Info
19
20 Note the various macros within the `vignette` section of the metadata block above. These are required in order to instruct R how to build the vignette. Note that you should change the `title` field and the `\VignetteIndexEntry` to match the title of your vignette.
21
22 ## Styles
23
24 The `html_vignette` template includes a basic CSS theme. To override this theme you can specify your own CSS in the document metadata as follows:
25
26 output:
27 rmarkdown::html_vignette:
28 css: mystyles.css
29
30 ## Figures
31
32 The figure sizes have been customised so that you can easily put two images side-by-side.
33
34 ```{r, fig.show='hold'}
35 plot(1:10)
36 plot(10:1)
37 ```
38
39 You can enable figure captions by `fig_caption: yes` in YAML:
40
41 output:
42 rmarkdown::html_vignette:
43 fig_caption: yes
44
45 Then you can use the chunk option `fig.cap = "Your figure caption."` in **knitr**.
46
47 ## More Examples
48
49 You can write math expressions, e.g. $Y = X\beta + \epsilon$, footnotes^[A footnote here.], and tables, e.g. using `knitr::kable()`.
50
51 ```{r, echo=FALSE, results='asis'}
52 knitr::kable(head(mtcars, 10))
53 ```
54
55 Also a quote using `>`:
56
57 > "He who gives up [code] safety for [code] speed deserves neither."
58 ([via](https://twitter.com/hadleywickham/status/504368538874703872))