请允许我说,这可能更适合作为html / css问题,但(a)我不太熟悉这些技术,并且(b)如果可能的话,我希望将其全部保留在家庭(R家族)中。
我想使用Rmarkdownknitr
编写学术风格的报告(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/ 可能会有所帮助。