我在同一文件夹中有两个文件:Chapter1.Rmd和Chapter2.Rmd,内容如下:
第1章
---
title: "Chapter 1"
output: pdf_document
---
## This is chapter 1. {#Chapter1}
Next up: [chapter 2](#Chapter2)
第2章
---
title: "Chapter 2"
output: pdf_document
---
## This is chapter 2. {#Chapter2}
Previously: [chapter 1](#Chapter1)
我该如何编织它们,使它们组合成一个pdf输出?
当然,render(input = "chapter1.Rmd", output_format = "pdf_document")
可以完美地工作,但render(input = "chapter1.Rmd", input = "chapter2.Rmd", output_format = "pdf_document")
不能。
我为什么要这样做?将巨大的文档分解为逻辑文件。
我已经使用@hadley的bookdown包从.Rmd构建乳胶,但这似乎对这个特定任务来说是过大的。有没有使用我遗忘的knitr / pandoc / linux命令行的简单解决方案?谢谢。