Tufte::tufte - HTML Toc Tufte::tufte - Handout Citation - Package Latex - Engine Tufte::tufte - Book Citation - Package Latex - Engine Link-Citations

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

tufte::tufte_html:

toc: yes
tufte::tufte_handout:
citation_package: natbib
latex_engine: xelatex
tufte::tufte_book:
citation_package: natbib
latex_engine: xelatex
link-citations: yes
---
```{r, include = FALSE}
# bibliography: skeleton.bib
```
```{r libs, message = FALSE, warning = FALSE, cache = TRUE, include =
FALSE}
## Setup Options, Loading Required Libraries and Preparing Environment
## Loading the packages and setting adjustment
suppressMessages(library('utils'))
suppressMessages(require('plyr', quietly = TRUE))
suppressMessages(require('BBmisc', quietly = TRUE))
pkgs <- c('jsonlite', 'arules', 'arulesViz', 'readr', 'knitr', 'stringr',
'stringi', 'dplyr', 'purrr', 'magrittr', 'formattable', 'DT',
'lubridate', 'googleVis', 'rvest')
suppressAll(l_ply(pkgs, require, quietly = TRUE, character.only = TRUE))
rm(pkgs)
## Set the googleVis options first to change the behaviour of plot.gvis,
so that only the chart
## component of the HTML file is written into the output file.
op <- options(gvis.plot.tag = 'chart')
```

You might also like