knitr:如何从多图块中引用一个图

时间:2015-04-23 02:17:55

标签: r knitr

我有一个.Rnw文档,我想从多绘图块中引用一个图。我该怎么做?

示例:

\documentclass{article}
\begin{document}

<<single_chunk, fig.cap="hi">>=
plot(1:5)
@

I can reference this single chunk fine! See \ref{fig:single_chunk}.

<<multichunk, fig.cap="hello">>=
plot(1:10)
plot(10:1)
@

The first figure is great, but \ref{fig:multichunk}. Try again \ref{fig:multichunk-1}.

\end{document}

这两次尝试都会产生??

1 个答案:

答案 0 :(得分:3)

看看生成的* .tex文件!这是相关部分(我采取了比knit更好地对齐它的自由):

\begin{knitrout}
\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe}
\begin{alltt}
\hlkwd{plot}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{)}
\end{alltt}
\end{kframe}
\begin{figure}
  \includegraphics[width=\maxwidth]{figure/multichunk-1}
  \caption[hello]{hello}
  \label{fig:multichunk1}
\end{figure}

\begin{kframe}\begin{alltt}
\hlkwd{plot}\hlstd{(}\hlnum{10}\hlopt{:}\hlnum{1}\hlstd{)}
\end{alltt}
\end{kframe}
\begin{figure}
  \includegraphics[width=\maxwidth]{figure/multichunk-2}
  \caption[hello]{hello}
  \label{fig:multichunk2}
\end{figure}

因此,如果仔细观察,您会注意到多时段数字的名称为fig:multichunk1fig:multichunk2。事实上,如果您引用这些(\ref{fig:multichunk1},...),一切正常。