赞
踩
LaTeX中的插图
在LaTeX中,是使用graphicx
宏包实现插图的。
我们需要用“usepackage”来引入“graphicx”宏包。
然后在文档中用includegraphics
插入图像。
该命令的必选参数,用于指定需要插入的图像文件的文件名,其可选参数用于指定图像的缩放比例,旋转等。
当使用XeLaTeX编译时,graphicx
宏包支持多种图像文件格式。
还可以使用graphicspath
指定图像文件的搜索路径。将图像等资源文件进行分门别类管理。
(1)将图片存放的文件夹figures与pics与tex文件夹放在同一个目录下。
(2)用graphicspath
命令来指定搜索路径为当前路径下的figures文件夹。
也可以添加其他路径,要用大括号实现分组。
(3)用includegraphics
命令来插入图像。
暂时不需要第一个可选参数。用第二个必选参数指定文件名。
编译运行,查看结果:
也可以加上文件的后缀名。
(4)调整图片大小
我们可以看到,图片太大,显示不完全。
我们可以为includegraphics
引入可选参数。
可选参数用方括号[ ]表示。
版型文本高度0.1倍的图像高度。
版型文本宽度0.2倍的图像宽度。
也可以同时指定多个参数。不同参数之间用逗号进行分割。
运行结果:
关于这些命令的细节,我们可以打开dos命令(WIn+R输入cmd),然后输入“texdoc graphicx”。
可以自行查阅,只不过全是英文哈哈。
最后附上全部代码,供大家学习使用!
% 导言区
\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}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。