'update'
[talweg.git] / pkg / vignettes / talweg.Rmd
CommitLineData
613a986f
BA
1---
2title: "Vignette Title"
3author: "Vignette Author"
4date: "`r Sys.Date()`"
5output: rmarkdown::html_vignette
6vignette: >
7 %\VignetteIndexEntry{Vignette Title}
8 %\VignetteEngine{knitr::rmarkdown}
9 %\VignetteEncoding{UTF-8}
10---
11
12Vignettes 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
20Note 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
24The `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
32The figure sizes have been customised so that you can easily put two images side-by-side.
33
34```{r, fig.show='hold'}
35plot(1:10)
36plot(10:1)
37```
38
39You can enable figure captions by `fig_caption: yes` in YAML:
40
41 output:
42 rmarkdown::html_vignette:
43 fig_caption: yes
44
45Then you can use the chunk option `fig.cap = "Your figure caption."` in **knitr**.
46
47## More Examples
48
49You 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'}
52knitr::kable(head(mtcars, 10))
53```
54
55Also a quote using `>`:
56
57> "He who gives up [code] safety for [code] speed deserves neither."
58([via](https://twitter.com/hadleywickham/status/504368538874703872))