Skip to content

Commit

Permalink
fix kintr opts
Browse files Browse the repository at this point in the history
  • Loading branch information
milliff committed Sep 24, 2018
1 parent 6975581 commit 7b4afe4
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion inst/rmarkdown/templates/manuscript/skeleton/skeleton.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,21 @@ anonymous: false # quickly sanitizes manuscript for blind review if 'true'
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
knitr::opts_chunk$set(echo = FALSE,
warning = F,
error = F,
tidy = T,
tidy.opts=list(width.cutoff=50),
collapse = T,
warning=FALSE,
error=FALSE,
message = FALSE,
comment = "",
fig.cap = " ",
cache = TRUE)
# These options are tuned for manuscript/presentation.
# They basically run R in the background except for spitting out figures/tables
# They also cache results so that you don't have to run your whole analysis every time you fix a typo
```
# Section

Expand Down

0 comments on commit 7b4afe4

Please sign in to comment.