LaTeX中的插图

LaTeX中的插图

在LaTeX中,是使用graphicx宏包实现插图的。

我们需要用“usepackage”来引入“graphicx”宏包。

然后在文档中用includegraphics插入图像。

该命令的必选参数,用于指定需要插入的图像文件的文件名,其可选参数用于指定图像的缩放比例,旋转等。

当使用XeLaTeX编译时,graphicx宏包支持多种图像文件格式。

还可以使用graphicspath指定图像文件的搜索路径。将图像等资源文件进行分门别类管理。

(1)将图片存放的文件夹figures与pics与tex文件夹放在同一个目录下。

LaTeX中的插图_第1张图片

(2)用graphicspath命令来指定搜索路径为当前路径下的figures文件夹。

也可以添加其他路径,要用大括号实现分组。

image-20220203233151312

(3)用includegraphics命令来插入图像。

暂时不需要第一个可选参数。用第二个必选参数指定文件名。

LaTeX中的插图_第2张图片

编译运行,查看结果:

LaTeX中的插图_第3张图片

也可以加上文件的后缀名。

LaTeX中的插图_第4张图片

(4)调整图片大小

我们可以看到,图片太大,显示不完全。

我们可以为includegraphics引入可选参数。

可选参数用方括号[ ]表示。

LaTeX中的插图_第5张图片

版型文本高度0.1倍的图像高度。

image-20220203235651062

版型文本宽度0.2倍的图像宽度。

image-20220203235810854

也可以同时指定多个参数。不同参数之间用逗号进行分割。

image-20220204000049923

运行结果:

LaTeX中的插图_第6张图片

LaTeX中的插图_第7张图片

LaTeX中的插图_第8张图片

LaTeX中的插图_第9张图片

关于这些命令的细节,我们可以打开dos命令(WIn+R输入cmd),然后输入“texdoc graphicx”。

LaTeX中的插图_第10张图片

可以自行查阅,只不过全是英文哈哈。

LaTeX中的插图_第11张图片

最后附上全部代码,供大家学习使用!

% 导言区
\documentclass{ctexart}

%usepackage{ctex}

%导言区:\usepackage{graphicx}
%语法:\includegraphics[<选项>]{<文件名>}
%格式:EPS,PDF,PNG,JPEG,BMP
\usepackage{graphicx}
\graphicspath{{figures/},{pics/}} %图片在当前目录下的figures目录


%正文区(文稿区)
\begin{document}
    \LaTeX{}中的插图:

    \includegraphics{one.jpeg}
    \includegraphics{two.png}

    \includegraphics[scale=0.3]{one}
    \includegraphics[scale=0.03]{two}

    \includegraphics[height=2cm]{one}
    \includegraphics[height=2cm]{two}

    \includegraphics[width=2cm]{one}
    \includegraphics[width=2cm]{two}

    \includegraphics[height=0.1\textheight]{one}
    \includegraphics[height=0.1\textheight]{two}

    \includegraphics[width=0.2\textwidth]{one}
    \includegraphics[width=0.2\textwidth]{two}

    \includegraphics[angle=-45,width=0.2 \textwidth]{one}
    \includegraphics[angle=45,width=0.2\textwidth]{two}
\end{document}

你可能感兴趣的:(LateX,LaTeX,插图)