将pandoc_args仅应用于rmarkdown doc的一部分 - 例如两列

时间:2017-09-14 19:41:26

标签: r r-markdown pandoc

有没有办法用rmarkdown创建一个只有两列 part 的页面?这就是我想要一个标题和一些延伸到整个页面的文本,但数字仍然是列格式。考虑下面的示例,其中列设置为2但标题仍保留在那里。

更新

我使用newRecordings = recordings.Except(_recordingsHidden).ToList(); 解决方案稍微靠近了一点,但随后又创建了一个新的空白页面。

\twocolumn

更一般地说,问题是如何将pandoc arg仅应用于--- title: "twocol_test" author: "test" output: pdf_document --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) ``` ## This header should stretch across the whole page Then this text should also not be in a column. But then the figures below should be organized into two columns: \twocolumn ```{r} plot(iris$Sepal.Length, iris$Sepal.Width) ``` ```{r} plot(iris$Sepal.Length, iris$Sepal.Width) ``` \onecolumn ```{r} plot(iris$Sepal.Length, iris$Sepal.Width) ``` ```{r} plot(iris$Sepal.Length, iris$Sepal.Width) ``` 文件的一部分?

1 个答案:

答案 0 :(得分:0)

我无法弄清楚这一点,但发现了一些适用于我的目的,包括将参数传递给跨越两列的标题。不完美,但这会奏效:

HeaderedLoader