我在同一个文件夹中有两个文件: Chapter1.Rmd 和 Chapter2.Rmd,它们的内容如下:
第一章 RMD
---
title: "Chapter 1"
output: pdf_document
---
## This is chapter 1. {#Chapter1}
Next up: [chapter 2](#Chapter2)
第二章 RMD
---
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")
不。
Why do I want to do this? To break up a 大型文件 into logical files.
我用@hadley 的 记账软件包来制造乳胶。Rmd,但是对于这个特定的任务来说,这似乎有些过头了。是否有一个简单的解决方案,使用 knyr/pandoc/linux 命令行,我错过了吗?谢谢。