使用 rnw 文件创建参数化报告。我正在尝试从其中包含多个数字的代码块中引用特定数字(由通过数字列表的循环生成)。我知道如果有一个数字,我可以从带有 \ref{fig:foo} 的块标签中引用它,正如 Yihui 在https://bookdown.org/yihui/bookdown/figures.html中提到的那样。但我似乎无法引用该块中的具体数字。我尝试引用独特的图形标题或整体块,但都给了我??。有没有办法做到这一点?
我使用 knitr及其链接问题在 R 评论中搜索了这个 Dynamic LaTeX 参考,但无法使其工作。
同样在knitr 的图形标题和标签中,这些图被组合成一个绕过问题的大图。
MVWE:
\documentclass{article}
\usepackage{float}
\usepackage{hyperref}
\usepackage{caption} % Needs to be after hyperref. jumps you to top of figure not to label.
\begin{document}
<<figures, fig.cap=c('fig1','fig2')>>=
library(knitr)
library(markdown)
library(rmarkdown)
library(ggplot2)
figure1 <- ggplot(mtcars) + geom_point(aes(x=mpg,y=cyl))
figure2 <- ggplot(mtcars) + geom_point(aes(x=drat,y=wt))
plots <- list(figure1,figure2)
plots
@
as we can see in \ref{fig:figures}
\end{document}