LaTeX双栏环境下的图片通栏并列绑定布局

LaTeX双栏环境下的图片通栏并列绑定布局_第1张图片

作者:金良([email protected]) csdn博客:http://blog.csdn.net/u012176591


效果展示与代码:

效果图如下:

LaTeX双栏环境下的图片通栏并列绑定布局_第2张图片


代码如下:

\begin{figure*}
  \begin{minipage}{0.5\textwidth}
\includegraphics[width=3.5in,height=2.33in]{12totalExecutionTime.pdf}
\caption{Total execution time}
\label{fig:12totalExecutionTime}
\end{minipage}
\hfill
\begin{minipage}{0.5\textwidth}
\includegraphics[width=3.5in,height=2.33in]{13averageLostTime.pdf}
\caption{Average lost time}
\label{fig:13averageLostTime}
\end{minipage}
\end{figure*}

说明

微笑上例只展示了一行两张图片,当然你可以罗列4张、6张甚至8张图片。一定要在同一个figure*环境里,否则不会被绑定在一块儿。
微笑超过8张图片时,不会自动换行,后边的图片将被掩盖。





你可能感兴趣的:(图片,绑定,latex,双栏)