在Latex中使用插图一般有两种方式,一种是插入事先准备好的图片,另一种是使用Latex代码直接在文档中画图。我们一般常见的使用都是第一种,准备好图片,然后直接插入在我们文档当中。只有一些特殊情况需要用大量代码作图。
插图功能不是由Latex的内核直接提供的,而是需要由宏包graphicx提供的。因此要使用宏包的话,我们就需要在引言区插入我们的宏包。当然咯,插图的宏包我们还可以选择性的使用graphics这个宏包,这两个宏包在功能上并没有什么差别,只是graphicx宏包支持<项目>=<值>的语法,使用起来更方便
。
注意:引言区就是指的从\documentclass 开始到\begin[document]的这个部分的区域。代码如下所示:
\documentclass{article}
%导言区
\usepackage{graphicx}
% ... ...
%导言区
\begin{document}
导入宏包之后我们就可以使用\includegraphics命令进行插图
。
\includegraphics[scale=0.6]{fullscreen.png}
\includegraphics这里有两个参数:
% 导言区用这个引入宏包: \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}
我们来段代码:
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[scale=0.6]{fullscreen.png}
\end{document}
我们在和.tex文本相同的路径下面放置一张图片叫做fullscreen.png.使用了上面的这个语句之后我们就可以得到一张插入的图片了:
一般情况下我们很少会把图片直接插入到我们的文本当中,而是会给它放置在一个叫做浮动体(float)的东西中,这样图片可以有一些相对位置的变换,不会造成分页困难等问题,图片的浮动环境是figure
,使用的方法如下所示:
\begin{figure}[ht]
\centering
\includegraphics[scale=0.6]{fullscreen.png}
\caption{this is a figure demo}
\label{fig:label}
\end{figure}
在这里第一行和最后一行就是我们使用figure的浮动体环境
。
注意:
h 此处(here)
t 页顶(top)
b 页底(bottom)
p 独立一页(page)
我们在写论文的时候,一般如果图片比较多我们一般会选择把图片统一的放到和源文件一个路径下的某个目录里,这个时候我们要成功的加载图片我们就可以使用相对路径来加载。如我们把图片全部放在一个叫做figs的文件夹下面,如图所示:
用相对路径把这个图加载出来,代码如下所示:
\begin{figure}[ht]
\centering
\includegraphics[scale=0.6]{figs/droid.png}
\caption{this is a figure demo}
\label{fig:pathdemo}
\end{figure}
当然了,graphicx宏包有一个特别有用的命令graphicspath,它可以指定我们图片的路径。\graphicspath{{figs/}} %表示在当前目录下存放有一个图片
\documentclass{article}
\usepackage{graphicx}
\graphicspath{{figs/}}
\begin{document}
这个时候我们插入一张图片看看
\begin{figure}[ht]
\centering
\includegraphics[scale=0.6]{KitKat.png}
\caption{this is a figure demo}
\label{fig:pathdemo4}
\end{figure}
有相对路径当然还有绝对路径,使用绝对路径插入图片的代码如下所示,使用与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}
代码的格式如下所示
\begin{figure*}[ht]
\centering
\includegraphics[scale=0.6]{KitKat.png}
\caption{this is a figure demo}
\label{fig:pathdemo4}
\end{figure*}
在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*}