Knitting RMarkdown documents
- MiKTeX on Windows
- MaCTeX 2013+ on Mac.
Many students last year had an RStudio with a default max.print
of 10000... which led to documents being turned in that were hundreds of pages. It can be easily handled in the setup chunk.
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
options(max.print=100)
```