当前位置:   article > 正文

Latex中插入图片_latex插入图片

latex插入图片

在这里插入图片描述

1、Latex的插图

在Latex中使用插图一般有两种方式,一种是插入事先准备好的图片,另一种是使用Latex代码直接在文档中画图。我们一般常见的使用都是第一种,准备好图片,然后直接插入在我们文档当中。只有一些特殊情况需要用大量代码作图。

插图功能不是由Latex的内核直接提供的,而是需要由宏包graphicx提供的。因此要使用宏包的话,我们就需要在引言区插入我们的宏包。当然咯,插图的宏包我们还可以选择性的使用graphics这个宏包,这两个宏包在功能上并没有什么差别,只是graphicx宏包支持<项目>=<值>的语法,使用起来更方便

注意:引言区就是指的从\documentclass 开始到\begin[document]的这个部分的区域。代码如下所示:

\documentclass{article}
%导言区
\usepackage{graphicx}

% ... ...
%导言区
\begin{document}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

导入宏包之后我们就可以使用\includegraphics命令进行插图

\includegraphics[scale=0.6]{fullscreen.png}
  • 1

\includegraphics这里有两个参数:

  • 第一个参数是可选的,一般要插入的图片是提前选好的,那么有可能就存在着和文档的规格有一些不符合的情况,这个样子的话我们就需要对图片做一些适当的调整。比如说设定图片的高度和宽度或者是按比例缩放。eg: width=3cm[缩放因子], height=8 cm[缩放因子] scale=0.4[缩放因子]。
% 导言区用这个引入宏包: \usepackage{graphicx}
% 调用展示图片的方法: \includegraphics[<opt>]{<filename>}
% 图片的几种格式: EPS,PDF,PNG,JPEG,BMP 

% 导言区
\documentclass{ctexart}
\usepackage{graphicx}
\graphicspath{{figures/},{pics/}} 		% file path: ./figures {}分组
 
% 正文区
\begin{document}	
	% 原图
	\includegraphics{test} 	% \includegraphics[可选参数]{文件名}
	\includegraphics{logo} 	% \includegraphics[可选参数]{文件名}
	
	% 指定缩放
	\includegraphics[scale=0.3]{test}
	\includegraphics[scale=0.03]{logo}
	
	% 指定高度 宽度自动调整
	\includegraphics[height=2cm]{test}
	\includegraphics[height=2cm]{logo}
	
	% 指定高度比例 宽度自动调整
	\includegraphics[height=0.01\textheight]{test}
	\includegraphics[height=0.01\textheight]{logo}
	
	% 指定宽度 高度自动调整
	\includegraphics[width=2cm]{test}
	\includegraphics[width=2cm]{logo}
	
	% 指定宽度比例 高度自动调整
	\includegraphics[width=0.01\textwidth]{test}
	\includegraphics[width=0.01\textwidth]{logo}
	
	% 同时指定旋转角度、宽度
	\includegraphics[angle=-45,width=0.2\textwidth]{test}
	\includegraphics[angle=-45,width=0.2\textwidth]{logo}
	
\end{document}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 第二个参数是必须的,第二个参数是图片的名字,在这里要编译成功必须和我们的tex文件放在同一个路径下。

我们来段代码:

\documentclass{article}

\usepackage{graphicx}

\begin{document}

\includegraphics[scale=0.6]{fullscreen.png}

\end{document}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

我们在和.tex文本相同的路径下面放置一张图片叫做fullscreen.png.使用了上面的这个语句之后我们就可以得到一张插入的图片了:
在这里插入图片描述

2、浮动体

一般情况下我们很少会把图片直接插入到我们的文本当中,而是会给它放置在一个叫做浮动体(float)的东西中,这样图片可以有一些相对位置的变换,不会造成分页困难等问题,图片的浮动环境是figure,使用的方法如下所示:

\begin{figure}[ht]

\centering
\includegraphics[scale=0.6]{fullscreen.png}
\caption{this is a figure demo}
\label{fig:label}
\end{figure}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里第一行和最后一行就是我们使用figure的浮动体环境

  • [ht]是可选项,h表示的是here在这里插入,t表示的是在页面的顶部插入
  • 使用figure表示的是把我们这个东西看成一个段落并且是没有任何缩进的
  • \centering表示的是里面紧跟的内容都居中
  • \includegraphics[]{}表示的插入图片,图片的标号自动会标好
  • \caption设置图片的一个编号以及为图片添加标题
  • \label 图片的标签,用来链接的,使用命令:~???
    在这里插入图片描述

注意:

h 此处(here)
t 页顶(top)
b 页底(bottom)
p 独立一页(page)

在这里插入图片描述

3、相对路径插入

3.1 导入includegraphics[scale=0.6]{figs/droid.png}

我们在写论文的时候,一般如果图片比较多我们一般会选择把图片统一的放到和源文件一个路径下的某个目录里,这个时候我们要成功的加载图片我们就可以使用相对路径来加载。如我们把图片全部放在一个叫做figs的文件夹下面,如图所示:
在这里插入图片描述
用相对路径把这个图加载出来,代码如下所示:

\begin{figure}[ht]
\centering
\includegraphics[scale=0.6]{figs/droid.png}
\caption{this is a figure demo}
\label{fig:pathdemo}
\end{figure}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

得到的效果如下图所示:
在这里插入图片描述

3.2 使用graphicspath导入includegraphics[scale=0.6]{KitKat.png}

当然了,graphicx宏包有一个特别有用的命令graphicspath,它可以指定我们图片的路径。\graphicspath{{figs/}} %表示在当前目录下存放有一个图片

\documentclass{article}

\usepackage{graphicx}
\graphicspath{{figs/}}

\begin{document}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

这个时候我们插入一张图片看看

\begin{figure}[ht]

\centering
\includegraphics[scale=0.6]{KitKat.png}
\caption{this is a figure demo}
\label{fig:pathdemo4}
\end{figure}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

这个时候我们得到的图片的效果如下图所示:
在这里插入图片描述

4、绝对路径插入图片

有相对路径当然还有绝对路径,使用绝对路径插入图片的代码如下所示,使用与windows系统和linux系统。

\begin{figure}[ht]

\centering
\includegraphics[scale=0.6]{F:/LatexWS/figs/index.png}
\caption{this is a figure demo}
\label{fig:pathdemo1}
\end{figure}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

得到的效果如下图所示:
在这里插入图片描述

5、跨双栏插入图片

代码的格式如下所示

\begin{figure*}[ht]

\centering
\includegraphics[scale=0.6]{KitKat.png}
\caption{this is a figure demo}
\label{fig:pathdemo4}
\end{figure*}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

figure后面加*号这样就可以把单栏的图片双栏显示了,举例如下:

\begin{figure*}
\begin{center}
\fbox{\rule{0pt}{2in} \rule{.9\linewidth}{0pt}}
\end{center}
   \caption{Example of a short caption, which should be centered.}
\label{fig:short}
\end{figure*}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述

6、Latex中插入多张图片,实现并排排列或者多行多列排列

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/77417?site
推荐阅读
相关标签
  

闽ICP备14008679号