Chinaunix首页 | 论坛 | 博客
  • 博客访问: 147022
  • 博文数量: 26
  • 博客积分: 385
  • 博客等级: 一等列兵
  • 技术积分: 257
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-03 00:46
文章分类

全部博文(26)

文章存档

2015年(1)

2014年(10)

2012年(5)

2011年(10)

我的朋友

分类: LINUX

2014-11-09 14:21:11


Using minipage to display two figures/table side-by-side in Latex

In the following example, ‘figure1′ and ‘figure2′ are being displayed side-by-side. One can also specify not only tables but also any other environment inside the minipage.

\begin{figure}[h!]
\begin{minipage}[b]{0.4\linewidth}
    \includegraphics{img/figure1}
    \caption{Figure 1}
\end{minipage}
\begin{minipage}[b]{0.4\linewidth}
    \includegraphics{img/figure2}
    \caption{Figure 2}
\end{minipage}
\end{figure}
One observation though: Do not skip a line between minipages. Otherwise, it will place the figures one below the other.

Reference
[1]


阅读(5064) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~