我正在用 bookdown 写论文。我想包含一个图形列表,但我不想包含每个图形的全部标题。我的想法是给每个图一个出现在图中的标题lof
和第二个没有出现的标题。我尝试过使用fig.subcap
,但这并没有给出第二个标题,我想是因为它需要第二个数字存在。
在下面的示例中,我想创建一个具有标题的图形"My Main Caption. Here is more detail"
,但在lof
just has:"My Main Caption"
中。
---
title: "Queries"
header-includes:
- \usepackage{subfig}
output:
bookdown::pdf_book:
toc: true
lof: yes
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(ggplot2)
```{r irisfig, fig.cap='My Main Caption. Here is more detail'}
ggplot2::ggplot(iris, aes(Sepal.Length, Sepal.Width))+
geom_point()
这不起作用:
```{r irisfig2, fig.cap='My Main Caption.', fig.subcap= c('Here is more detail')}
ggplot2::ggplot(iris, aes(Sepal.Length, Sepal.Width))+
geom_point()