我用這個代碼,以使數據在Sweave
並排側數字在Sweave
<<label=fig1plot, include=FALSE >>=
plot(cars)
@
\begin{figure}
\begin{center}
<<label=fig1, fig=TRUE, echo=FALSE>>=
<<fig1plot>>
@
\end{center}
\caption{Some caption}
\label{fig:fig1plot}
\end{figure}
<<label=fig2plot, include=FALSE >>=
plot(table(rpois(100,5)), type = "h", col = "red", lwd=10, main="rpois(100,lambda=5)")
@
\begin{figure}
\begin{center}
<<label=fig2, fig=TRUE, echo=FALSE>>=
<<fig2plot>>
@
\end{center}
\caption{Some caption}
\label{fig:fig2plot}
\end{figure}
現在我想把這兩個數字並排側,有圖1(a)和類似標題圖1(b)。任何想法,意見和指導方針,高度讚賞。預先感謝您的時間和幫助。
在添加'\ usepackage {subcaption}'到我的sweave文檔序言中之前,即使在添加任何子圖之前,我都會收到類似「\ caption」的消息,因爲它已被文檔類或程序包重新定義, caption包,'subcaption'包不能正常工作。「我猜這個答案被接受後,事情已經發生了變化... – liori