我在LaTeX中的文档类中。如何加载保存为.png文件的图像?
答案 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)
答案 2 :(得分:2)
我没有使用pdflatex。在Ubuntu上,我使用imagemagick附带的convert
命令将.png转换为.eps,然后使用includegraphics
。