LaTex插入图片
程序员文章站
2022-05-21 17:50:11
...
一、图片格式问题
LaTex中一般不支持jpg/png图片格式,需要转成eps。
https://blog.csdn.net/yql_617540298/article/details/87972357
二、单栏插入图片
\begin{figure}[htbp]
\centering
\includegraphics[height=6.0cm,width=9.5cm]{figure/1.eps}%fig2文件夹下的xbee.esp图片,
\caption{The proposed framework.}
\end{figure}
三、通栏插入单张图片
\begin{figure*}[htbp]
% Requires \usepackage{graphicx}
\centering
\includegraphics[width=0.8\linewidth]{figure/1.eps}% 1\linewidth
\caption{The overview of delivery system.}\label{fig:fig1}
\end{figure*}
[htbp]
『h』当前位置。将图形放置在正文文本中给出该图形环境的地方。如果本页所剩的页面不够,这一参数将不起作用。
『t』顶部。将图形放置在页面的顶部。
『b』底部。将图形放置在页面的底部。
『p』浮动页。将图形放置在一只允许有浮动对象的页面上。
四、通栏插入多张图片
\begin{figure*}[htbp]
\centering
\begin{minipage}[t]{0.3\linewidth}
\centering
\includegraphics[width=2.3in, height=4.2in]{figure/b1.eps}
\label{fig:side:a}
\end{minipage}
\begin{minipage}[t]{0.3\linewidth}
\centering
\includegraphics[width=2.3in, height=4.2in]{figure/b2.eps}
\end{minipage}
\begin{minipage}[t]{0.3\linewidth}
\centering
\includegraphics[width=2.3in, height=4.2in]{figure/b3.eps}
\label{}
\end{minipage}
\caption{Results on: (a) Total-Text, (b) MSRA-TD500, (c) ICDAR2015.}
\end{figure*}
上一篇: 打造属于自己的博客系统
下一篇: latex插入并列图片