knitr/Rmd: page break after n lines/n distance
Let me caveat by saying that this may be better suited as an html/css question but (a) I'm not too familiar with those techniques and (b) I wanted to keep it all in the family (R family) if possible. I would like to use knitr to write academic style reports ( APA 6 type guidelines ) using Rmarkdown. I've got most aspects worked out but not page breaking. I can manually set page breaks with something like: # report ```{r setup, include=FALSE} # set global chunk options opts_chunk$set(cache=TRUE) ``` ------ ## Page 1 ```{r plot1} plot(1:10, 1:10) ``` ------ ## Page 2 In the following .Rmd I'd