在LaTeX中加载图像

时间:2010-05-16 20:42:13

标签: latex

我在LaTeX中的文档类中。如何加载保存为.png文件的图像?

3 个答案:

答案 0 :(得分:16)

如果使用pdflatex(直接编译为pdf),则可以使用graphicx命令使用\includegraphics包。如果您的图像被称为foo.png,则可以在文档中添加以下命令。

\includegraphics{foo}

但是,如果您使用latex(首先编译为dvi),则不能将'png'文件用作图像(使用任何包)。您必须先将图像转换为“eps”。如果您的图像被称为foo.png,那么您可以使用任何图形软件将其转换为foo.eps,并使用以下命令来包含图像。

\includegraphics{foo}

以下是宽度规范的完整示例:

\documentclass{article}
\usepackage{graphicx}

\begin{document}
Here is my image.
\includegraphics[width=\textwidth]{foo}
\end{document}

答案 1 :(得分:10)

使用graphicx包(包含在大多数LaTeX发行版中),它可以让您:

\includegraphics[width=3in]{foo.png}

请参阅an example page以帮助您入门。

答案 2 :(得分:2)

我没有使用pdflatex。在Ubuntu上,我使用imagemagick附带的convert命令将.png转换为.eps,然后使用includegraphics