我将Bookdown与pdf输出一起使用。
在我的文档中,通常会使用
''
。
我想知道除了标题之外,是否还可以向图像添加注释。我希望看到“图#:图像标题。我的评论(例如,该图显示了...)”,但是这些评论未显示在“图列表”中。
这可能吗?如果可能,怎么办?
提前谢谢!
答案 0 :(得分:0)
我不使用bookdown
,但它是pdf_document
中rmarkdown
的近亲。可以在这里工作:
---
title: "image.Rmd"
output:
pdf_document:
keep_tex: true
toc: true
---
```{r}
knitr::opts_chunk$set(dev='pdf')
```
\newcommand{\comment}[1]{}
\listoffigures
```{r theplot,fig.show="hide"}
plot(rnorm(1000))
```
![\label{thefig}This is the caption\comment{this is the comment}](image_files/figure-latex/theplot-1.pdf)
有趣的是,该注释未显示在.tex
文件中,该注释已被Pandoc删除。如果您确实希望在输出中看到评论,则可以使用类似的
\newcommand{\comment}[1]{\textit{#1}}
代替上面的定义。