删除/隐藏编织标记 - > pandoc图下面的图标题

时间:2014-10-23 14:21:52

标签: r markdown knitr pandoc

我不知道如何从生成的pdf文档中删除Figure 1:: (使用rmarkdown; knitr; pandoc)。我有.Rmd file > .md > .pdf

我在R控制台中生成pdf:

system(paste("pandoc -V geometry:margin=0.7in -o", path, "/file_name", ".pdf ", "file_Rmd", ".md" ,sep=""))

简单示例:

```{r}
plot(1:20)
```

输出:

enter image description here

1 个答案:

答案 0 :(得分:20)

-fmarkdown-implicit_figures添加到您的pandoc调用中以禁用隐式图形扩展,这反过来将禁用"图#:xyz"标签。

system(paste("pandoc -V geometry:margin=0.7in -fmarkdown-implicit_figures -o", path, "/file_name", ".pdf ", "file_Rmd", ".md" ,sep=""))