0

使用 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}
4

1 回答 1

2

只需在其上附加一个数字:

as we can see in \ref{fig:figures1} and \ref{fig:figures2}

要弄清楚这一点,您应该查看该.tex文件,其中包含

\begin{figure}
\includegraphics[width=\maxwidth]{figure/figures-1} \caption[fig1]{fig1}\label{fig:figures1}
\end{figure}

第一个,另一个类似的东西。该\label{fig:figures1}部分是您\ref需要参考的部分。

于 2018-10-29T20:08:31.333 回答