这是我的代码,它应该显示在彼此相邻的图形上,但没有这样做。事实上,sweave 部分没有被解释。
\begin{figure}[h]
\begin{center}
\begin{minipage}[t]{.485\linewidth} %
<<fig=true,echo=false>>=
print(graph2)
@
\newline{\color{red}{\caption{\label{idx}Graph one}}}
\end{minipage}
\hspace{.02\linewidth}
\begin{minipage}[t]{.485\linewidth}%
<<fig=true,echo=false>>=
print(graph2)
@
\newline{\color{red}{ \caption{\label{pb}Graph two}}}
\end{minipage}
\end{center}
\end{figure}
graph1,graph2 只是由 qplot 创建的任何给定图形。这两个图表在 minipage 之外都可以正常工作。我知道这个话题一直存在,但不知何故,我无法找到解决方案来让其他人像这样。
另外我还有一个小问题:阻止 Sweave 生成 .eps 和 .pdf 的论据是什么?手册只是说明它是默认值。但是我确信我只使用 pdflatex,因此不需要 .eps。