MiKTeX 2.9 找不到 includegraphics 包

MiKTeX 2.9 找不到 includegraphics 包

我正在使用 MiKTeX 2.9,当我包含包 {Includegraphics} 来使用图形时,无法识别。所以我需要帮助。

答案1

为了在文档中包含图形,您应该使用

\usepackage{graphicx}

在您的文档序言中(\documentclass{<doc class>}和之间\begin{document}),它允许您使用

\includegraphics{<filename>}

根据您使用的编译器(latex、 或pdflatexxelatex),您可能只需要使用特定的图像类型(PDF、EPS、PNG、JPG 等)。但是,有办法解决这个问题。您还可以使用以下方法指定选项参数(如图像宽度、高度等)

\includegraphics[width=4cm,height=3mm]{filename}

有关标准用法以及包选项的更多信息,请参阅graphicx包装文档

相关内容