gpt4 book ai didi

r - Sweave 中的并排数字

转载 作者:行者123 更新时间:2023-12-04 10:26:57 24 4
gpt4 key购买 nike

我使用此代码在 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) 这样的标题。任何想法、评论和指南都受到高度赞赏。提前感谢您的时间和帮助。

最佳答案

您可以使用 subcaption latex 包:

\begin{figure}
\begin{minipage}[b]{.5\linewidth}
\centering\large A
% plot 1
\subcaption{A subfigure}\label{fig:1a}
\end{minipage}%
\begin{minipage}[b]{.5\linewidth}
\centering\large B
% plot 2
\subcaption{Another subfigure}\label{fig:1b}
\end{minipage}
\caption{A figure}\label{fig:1}
\end{figure}

另见: How can I have images that are side-by-side and have numbers attached to each one?

关于r - Sweave 中的并排数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7937158/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com