我正在使用GitHub上提供的默认Bookdown示例“A Minimal Book Example”:https://github.com/rstudio/bookdown-demo
如何编辑模板,以便PDF输出在所有章节之前没有空白页?
我不会说TeX,所以对于无能为力的基本线索将不胜感激。
答案 0 :(得分:2)
这不是rbookdown本身的问题,但这是因为文档类中的分类选项" book"在LaTex。我找到了提示here。
在index.Rmd文件的顶部,您的YAML标头中有documentclass: book
。在它下方,添加classoption: openany
来解决此问题。例如:
---
title: "Fancy Title"
author: "Your Name"
date: "`r Sys.Date()`"
documentclass: book
classoption: openany
---