Sweave 中的并排数字

发布于 2024-12-12 13:13:04 字数 708 浏览 0 评论 0原文

我使用此代码在 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) 和 Fig 1 (b) 所示的标题。任何想法、评论和指南都将受到高度赞赏。预先感谢您的时间和帮助。

I use this code to make figures in 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}

Now I want to put these two figures side-by-side and have captions like Fig 1 (a) and Fig 1 (b). Any ideas, comments and guidelines are highly appreciated. Thanks in advance for your time and help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

百合的盛世恋 2024-12-19 13:13:05

我会使用 par(mfrow=c(1,2)) 将它们放在一起作为一个图形,只有一个 \begin{figure}、代码块和 \end{图}。下面可能有一个共同的传说,但这很常见。

I would put them together as one figure using par(mfrow=c(1,2)), with just one \begin{figure}, code chunk, and \end{figure}. There would be one common legend running underneath, but that's common.

冷夜 2024-12-19 13:13:04

您可以使用 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}

另请参阅:如何才能获得并排的图像并且每张图像都附有编号?

You can use the subcaption LaTeX package:

\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}

See also this: How can I have images that are side-by-side and have numbers attached to each one?

友谊不毕业 2024-12-19 13:13:04

我为此使用 subfig 包。请参阅http://ctan.org/tex-archive/macros/latex/contrib /subfig/。示例代码如下所示:

\begin{figure}      
  \centering        
    \subfloat[One.]{...}    
  \hspace{.25in}%       
    \subfloat[Two.]{...} \\ 
    \subfloat[Three.]{...}  
  \hspace{.25in}%       
    \subfloat[Four.]{...}   
  \caption{Simple Case.}    
\end{figure} 

I use the subfig package for this. See http://ctan.org/tex-archive/macros/latex/contrib/subfig/. Example code looks like this:

\begin{figure}      
  \centering        
    \subfloat[One.]{...}    
  \hspace{.25in}%       
    \subfloat[Two.]{...} \\ 
    \subfloat[Three.]{...}  
  \hspace{.25in}%       
    \subfloat[Four.]{...}   
  \caption{Simple Case.}    
\end{figure} 
难如初 2024-12-19 13:13:04

我为此使用了列,它可以让我将数字分开,但可以按照我想要的方式排列它们。

\begin{columns}
        \begin{column}{0.48\textwidth}
<<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}
  \end{column}
  \begin{column}{0.48\textwidth}

<<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}
  \end{column}
\end{columns}

I use columns for this, it lets me keep the figures seperate but lay them out the way I want.

\begin{columns}
        \begin{column}{0.48\textwidth}
<<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}
  \end{column}
  \begin{column}{0.48\textwidth}

<<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}
  \end{column}
\end{columns}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文