我一直试图将图表输入到我的.tex
文件中,但不起作用。我把文件放在.png
与文件相同的文件夹中.tex
,我的部分代码如下所示:
\documentclass[16pt, a4paper]{article}
\begin{document}
.
.
.
\usepackage{graphicx}
\begin{figure}
\includegraphics{Gaussfit.png}
\end{figure}
\end{document}
我收到的错误信息是:
! LaTeX Error: Can be used only in preamble.
我该如何解决这个问题?
答案1
\documentclass[a4paper]{article} % / after this
\usepackage{graphicx} % <--{
\begin{document} % \ before this
\begin{figure}
\includegraphics[width=\textwidth]{Gaussfit.png}
\end{figure}
\end{document}
答案2
您还可以传递一个选项来设置图像的比例,如下所示:
\includegraphics[scale=0.5]{Gaussfit.png}
在这种情况下,图像将缩小一半。此外,包含文件扩展名 ie.png
不是强制性的。
您可以查看其他选项这里。