[latex]插入图片

发布时间:2024-03-27 09:01

一、插入图片的位置

默认方式:

是跟.tex文件具有相同路径,所以直接写图片名称即可。
\includegraphics[width=1\linewidth]{graph_rela.png}

当前子文件夹下的图片

是相对路径,写:文件夹名+图片名
\includegraphics[width=1\linewidth]{figures//graph_rela.png}

其他文件夹的图片

可以采用绝对路径。
\includegraphics{D:/matlab/image/zs.eps}

二、图片的导入部分

\usepackage{subfigure}
\usepackage[graphicx]{realboxes}

三、插入单张图片

\begin{figure}
\centering %表示居中
\includegraphics[height=4.5cm,width=9.5cm]{111.eps}
% [height=4.5cm]表示高度
%[width=9.5cm]表示宽度
%{111.eps}表示eps格式的图片,名为111
\caption{pic1}
%图片的名称
\label{2}
%图片的标签,用于文章中的引用,注意到标签的数字与实际文章显示的数字可能不同
\end{figure}

[latex]插入图片_第1张图片

四、插入单排多图无小标题共享大标题

	\begin{figure}[htbp]%%图,[htbp]是浮动格式
	\subfigure[]{
	\includegraphics[width=2.5cm,height=2.5cm]{figures//hx2.png} \label{Fig.6(b)}
}
	\hspace{2mm}
	\subfigure[]{
	\includegraphics[width=2.5cm,height=2.5cm]{figures//hx2.png} \label{Fig.6(b)}
}	
	\hspace{2mm}
	\subfigure[]{
		\includegraphics[width=2.5cm,height=2.5cm]{figures//hx2.png} \label{Fig.6(b)}
	}
	
	\caption{Geographical location and relationship of four types of bike stations }
	\end {figure}

注意:不要有回车enter,否则图片会自动跳到下一行
[latex]插入图片_第2张图片

有回车的情况!!!–单排变多排

	\begin{figure}[htbp]%%图,[htbp]是浮动格式
	\subfigure[]{
	\includegraphics[width=2.5cm,height=2.5cm]{figures//hx2.png} \label{Fig.6(b)}
}
	\hspace{2mm}
	\subfigure[]{
	\includegraphics[width=2.5cm,height=2.5cm]{figures//hx2.png} \label{Fig.6(b)}
}

%% 有回车	
	\hspace{2mm}
	\subfigure[]{
		\includegraphics[width=2.5cm,height=2.5cm]{figures//hx2.png} \label{Fig.6(b)}
	}
	
	\caption{Geographical location and relationship of four types of bike stations }
	\end {figure}

[latex]插入图片_第3张图片

五、插入单排多图有小标题大标题

	\begin{figure}[htbp]%%图,[htbp]是浮动格式

	\begin{minipage}[t]{0.3\linewidth}  \label{Fig.4}      %图片占用一行宽度的30%
		\hspace{2mm}
		\includegraphics[width=3.5cm,height=2cm]{figures//singlegraph.png}
		\caption{The relationship between different types of sites.}
	\end{minipage}
	\begin{minipage}[t]{0.3\linewidth}  \label{Fig.4}      %图片占用一行宽度的30%
	\hspace{2mm}
	\includegraphics[width=3.5cm,height=2cm]{figures//singlegraph.png}
	\caption{The relationship between different types of sites.}
\end{minipage}
		\begin{minipage}[t]{0.3\linewidth}  \label{Fig.4}      %图片占用一行宽度的30%
		\hspace{2mm}
		\includegraphics[width=3.5cm,height=2cm]{figures//singlegraph.png}
		\caption{The relationship between different types of sites.}
	\end{minipage}
	\end {figure}

如图所示:
[latex]插入图片_第4张图片
注意:如果图片本身过大的时候,如果只调整图片占据的篇幅大小0.3/linewith,则会出先图片重叠的现象。此时,只要对图片的高度和宽度重新调整缩小即可。

六、图片的位置

latex定义了两种浮动体环境:figuretable,通常分别用于图和表的排版。

6.1 figure环境的语法格式如下:

\begin{figure}[(允许位置)]
(任意内容)
\end{figure}

6.2 位置参数

able环境与之类似。其中可选参数(允许位置)用来设定浮动环境可以出现在页面的位置,即h、t、b、p四个选项的组合:

  • h 此处(here),浮动体的内容被放在代码所在的上下文位置。
  • t 页顶(top),浮动体被放在一页的顶部,这可以是代码所在环境的页面或之后的页面,注意当页排版的浮动体可能出现在实际代码之前。
  • b 页底(bottom),浮动体被放在一页的底部。
  • d 独立一页(page),一个或多个浮动体被放在单独的页面中,这个页面被称为浮动页(float page),与之对应,有正文的页面称为文本页(text page)。

ItVuer - 免责声明 - 关于我们 - 联系我们

本网站信息来源于互联网,如有侵权请联系:561261067@qq.com

桂ICP备16001015号