我正在使用knitr和pandoc将报告写入word(我们需要能够使用曲目更改等方式传阅评论)。
到目前为止它工作得非常好,但我发现这些情节都是底部带有字幕的,我不想要字幕。虽然我可以在单词doc中删除它们,但如果我可以阻止它们在代码中显示它会更好。
因此,对于markdown中的以下代码:
Test test test
```{r}
summary(cars)
```
You can also embed plots, for example:
```{r fig.width=7, fig.height=6}
plot(cars)
```
然后我在R中运行以下代码:
library("knitr")
# Stackoverflow table test 1.html
knit2html("captiontest.rmd")
FILE <- "captiontest"
system(paste0("pandoc -o ", FILE, ".docx ", FILE, ".md"))
在图文档中,图表的标题是“chunk unnamed-chunk-2”的标题
我知道我可以更改此标题,例如{r fig.width=7, fig.height=6, fig.cap='hello'}
,但我认为fig.cap=NULL
会隐藏它。相反,它似乎使整个情节消失。
图表是否需要有标题 - 我是否只需要浏览每个单词文档并手动删除它们?或者有办法隐藏它们吗?
答案 0 :(得分:10)
有点脏话,但是:
您可以在相关的块上设置fig.cap=""
:
Test test test
```{r}
summary(cars)
```
You can also embed plots, for example:
```{r fig.width=7, fig.height=6, fig.cap=""}
plot(cars)
```
或者,您可以在Rmd文档开头的初始化块中一次为所有块设置fig.cap=""
:
Test test test
```{r options-chunk}
opts_chunk$set(fig.cap="")
```
```{r}
summary(cars)
```
You can also embed plots, for example:
```{r fig.width=7, fig.height=6}
plot(cars)
```