Knitr include_graphics中的书本标题

时间:2018-10-02 14:08:28

标签: knitr caption bookdown

我正在用Bookdown写一份报告,我有兴趣用一个标题将它们全部描述为水平复制一系列图片。如果我没有定义fig.cap,我将得到正确的图片,如下所示:

```{r, out.width = "33%",echo=FALSE}

knitr::include_graphics(rep(c("1.jpg","2.jpg","3.jpg"),1))

```

enter image description here

相反,如果我想添加一个描述所有三张图片的标题,如下所示:

(ref:123) left: ...; centre ...; right ....

```{r, out.width = "33%",fig.cap='(ref:123)', echo=FALSE}

knitr::include_graphics(rep(c("one.jpg","two.jpg","three.jpg"),1))

```

enter image description here

我想要的是这样的东西:

enter image description here

非常感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

您应该使用块选项fig.show='hold'。有关示例,请参见 bookdown 书中的Figures 2.3 and 2.4