赞
踩
例子:\centring 是让图片居中。width是定义图片的宽度,height是定义高度,也可以使用scale来定义图片的缩放尺度。caption是图片的标题,label是插入的图片在文章中的标签。也可以导入文件夹中的图片路径加文件名,如 figure/i19_22_5.png,在figure文件夹中的i19_22_5.png文件。
\begin{figure}[!ht]
\centering
\includegraphics[width=8cm,height=5cm]{i19_22_5.png}
\caption{Picture illustration(1).}
\label{fig1}
\end{figure}
效果:因为我使用的IEEE的模板,所以效果是单栏显示。如果想要跨双栏显示,只需要在figure后添加*就可以了。
导入需要的包
1. \usepackage{subfigure},导入多张子图。这个包比较老了,还可以使用\usepackage{subfig}包,但是两个包不能同时使用,并且具体的用法也不一样。
例子:
0.45\linewidth是0.45倍行宽,可以在subfigure后添加[]来添加每张图片的小标题,如subfigure[test]。这里的图片格式是.eps,导入文件的时候,可以不加格式后缀。
\begin{figure*}[ht]
\centering
\subfigure{\includegraphics[width=0.45\linewidth]{model}%
\label{fig_first_case}}
\hfil
\subfigure{\includegraphics[width=0.45\linewidth]{model}%
\label{fig_second_case}}
\caption{Simulation results for the network.}
\label{fig_sim}
\end{figure*}
效果:
上面的例子不能自定义每行的图片数量,只是一行满了之后,自动换行,下面,介绍一个新的方法来自定义每行插入的图片数量。
\begin{figure*}[ht] \centering \subfigure[1]{\includegraphics[width=0.25\linewidth]{i19_22_5.png}% \label{fig_first_case}} \hfil \subfigure[2]{\includegraphics[width=0.25\linewidth]{i19_22_5.png}% \label{fig_second_case}} \subfigure[3]{\includegraphics[width=0.25\linewidth]{i19_22_5.png}% \label{fig_third_case}} \hfil \subfigure[4]{\includegraphics[width=0.25\linewidth]{i19_22_5.png}% \label{fig_forth_case}} \caption{Simulation results for the network.} \label{fig_sim} \end{figure*}
效果:
用minipage来定义插入图片的数量。
例子:
\vspace{3pt}是上下两张图片的距离。
\begin{figure*} \centering \subfigure[Input]{ \begin{minipage}[b]{0.23\linewidth} \includegraphics[width=1\linewidth]{i19_22_5.png}\vspace{3pt} \includegraphics[width=1\linewidth]{i19_22_5.png} \end{minipage} } \subfigure[Ours]{ \begin{minipage}[b]{0.23\linewidth} \includegraphics[width=1\linewidth]{i19_22_5.png}\vspace{3pt} \includegraphics[width=1\linewidth]{i19_22_5.png} \end{minipage}} \subfigure[GT]{ \begin{minipage}[b]{0.23\linewidth} \includegraphics[width=1\linewidth]{i19_22_5.png}\vspace{3pt} \includegraphics[width=1\linewidth]{i19_22_5.png} \end{minipage}} \subfigure[LL]{ \begin{minipage}[b]{0.23\linewidth} \includegraphics[width=1\linewidth]{i19_22_5.png}\vspace{3pt} \includegraphics[width=1\linewidth]{i19_22_5.png} \end{minipage}} \caption{ pics} \end{figure*}
效果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。