欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Latex 插入图片

程序员文章站 2022-05-21 17:49:47
...

使用宏包graphicx

%使用宏包
\usepackage{graphicx}
%需要插图的地方
\includegraphics[height=高度]{图片文件名} 或者: \includegraphics[width=宽度]{图片文件名}

其中的”高度”和”宽度”是指希望图片打印的高度和宽度, 必须给出单位, 可用厘米(cm)或英寸(in). 高度和宽度也可用上述格式同时给出, 这样可以改变原图的长宽比例. 上述命令中的图片文件名是指欲插入的图片文件 的文件名, 图片必需是eps格式的.

用graphicx包的includegraphics宏命令插入图片时还可以使图片旋转, 方法是:

\includegraphics[height=高度][angle=旋转角度]{图片文件名}

插入的图形通常为eps、pdf或者jpg、png等格式,假设名字叫fig,把它放在你的tex文档同一目录下。

1、先导言区加一句\usepackage{graphicx}
2、如果想插入inline的图形, 直接使用

\includegraphics[width=5in]{fig},

不用加后缀名。
这个width是最常用的选项, 也可以改成其他的。
3、如果你想插入浮动图形, 使用

\begin{figure}[htbp]
\centering\includegraphics[width=3.5in]{fig}
\caption{something}\label{fig:1}
\end{figure}

LaTeX 控制图片的位置,就是加感叹号来忽略“美学”标准。

\begin{figure}[!htb]
\usepackage{float}
\begin{figure}[H]

插到你代码相应的位置。

1,插入并列的子图

\usepackage{subfigure}
\begin{figure}[H]
\centering
\subfigure[SubfigureCaption]{
\label{Fig.sub.1}
\includegraphics[width=0.4\textwidth]{figurename.eps}}
\subfigure[SubfigureCaption]{
\label{Fig.sub.2}
\includegraphics[width=0.4\textwidth]{figurename.eps}}
\caption{MainfigureCaption}
\label{Fig.lable}
\end{figure}

2,控制图片位置

如果不喜欢让Latex自动安排图片位置,可以使用float包,然后

\begin{figure}[H]
\usepackage{float}

相关标签: latex