让我警告说,这可能是更适合作为一个HTML / CSS的问题,但(一)我不是太熟悉这些技术和(b)我想如果可能的话,以保持它的所有家庭(R系列)。
我想用knitr
写学术报告风格采用Rmarkdown(APA 6型准则 )。 我已经得到了很多方面的工作了,但不破页。 我可以手动设置分页符的东西,如:
# 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
在下面的.Rmd我想以后n行/ n的距离以编程方式设置这些中断。 因此,让后8英寸或140线的说。
# report
```{r setup, include=FALSE}
# set global chunk options
opts_chunk$set(cache=TRUE)
```
Initial Text. Yay!
```{r plot1}
plot(1:10, 1:10)
```
More Text. Outstanding. What Hadley's not calling it plyr2?
```{r plot2, fig.width=4, fig.height=4}
plot(1:10, 1:10)
```
`r paste(rep("So much text so little time!", 10000))`
我如何编程集合n的距离之后分页符。 这类似于如何LaTeX
,所以如果这个数字占用太多的空间,将被强制下页将打破文件到页面。
编辑发现这从一个朋友: http://www.w3.org/TR/css3-page/可能会有所帮助。