导入图片
----需要提前声明:
\usepackage{graphicx}%调用graphicx包
\graphicspath{ {./images/} }%指明图片存放的文件夹,这里./表示主程序的那个目录(省略也行)
\includegraphics{universe}%插入图片(仅正文中使用)
另外,如果有两个装图片的文件夹可以写成下面:
\graphicspath{ {./images1/}{./images2/} }
图像大小和旋转
----图片大小
\includegraphics[width=5cm, height=4cm]{图片名}
\includegraphics[width=\textwidth]{图片名}%让图片填充文档的宽度
----旋转
\includegraphics[scale=1.2, angle=45]{图片名}%原图1.2倍,逆时针旋转45度
位置
----独立:
\begin{figure}[h]%就是这个[h]参数,下面会说其他的类型
\includegraphics[width=8cm]{Plot}
\end{figure}
----嵌入:
\usepackage{wrapfig}%wrapfig包
\begin{wrapfigure}{r}{0.25\textwidth} %r表示放右边,宽度占页面宽的25%
\centering%图片居中,默认左对齐
\includegraphics[width=0.25\textwidth]{mesh}
\end{wrapfigure}
参数:h--通常用这种
t--放在页面顶部
b--放在页面底部
p--浮动型
!--我也没试过
H--我也没试过
标题,标签
----两种标题
\caption{标题内容}%普通版本,写在图片后就在图片下
\begin{SCfigure}[0.5][h]。。。\end{SCfigure}
\listoffigures%快速生成有标题图片的目录
----标签
\label{fig:mesh1}%fig为标签
???...\pageref{fig:mesh1}
PS:图片都不用加后缀的,什么.JPG和.PNG统统不加后缀,所以命名最好不要重复