在 Latex 中插入图像 - 基础知识

在 Latex 中插入图像 - 基础知识

这是我第一次使用 LaTeX,我只需要这个程序来准备一份必须包含一些图形的作业。为此,我一直在阅读如何插入图像,但仍然无法添加图像,我寻求任何帮助。如果您能在下面解释这个问题并给我一些建议,那就太好了。

! LaTeX Error: Can be used only in preamble.See the LaTeX manual or LaTeX Companion for explanation.Type H <return> for immediate help.... \usepackage

我输入的是:

\documentclass[10pt]{article}
\begin{document}

\usepackage{graphics}

\includegraphics[scale=1]{ad.png} 
\end{document} 

先感谢您。

答案1

加载包\usepackage{...}必须在序言中完成,换句话说,在发出之前\begin{document}

所以你的代码应该是

\documentclass[10pt]{article}
% Load packages here  
\usepackage{graphics}

\begin{document} % Document content begins here

\includegraphics[scale=1]{ad.png}

\end{document} 

另请参阅软件包:graphics 与 graphicx为什么你应该使用graphicxX前面X倾向)包,而不是graphics包裹。

相关内容