Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 RStudio、knitr、pandoc、MS Word 组合在docx文档中获取最终结果。
docx
有时,我希望报告在新页面上继续。我找不到实现这一目标的方法。
根据我的谷歌搜索,似乎可以使用CSS. 我不知道HTMLor CSS,但如果这是我将学习的解决方案。只是不想走错路...
CSS
HTML
试试 LaTeX 命令 \newpage。Pandoc 可以识别它,并且可能(现在不在计算机上)将其翻译为 Word 分页符。
```{=openxml} <w:p> </w:pPr> <w:r> <w:br w:type="page"/> </w:r> </w:p> ```
将此代码插入.RMD文件中您想要的新页面位置,并将文件编织成word文件。它会被 pandoc 翻译成一个新的分页符,就像使用 $Latex$ 的 \newpage 命令一样。