如何在 \documentclass[preprint,12pt,authoryear]{elsarticle} 中放置 LaTex 中的图片

如何在 \documentclass[preprint,12pt,authoryear]{elsarticle} 中放置 LaTex 中的图片

它说 ”

%% For including figures, graphicx.sty has been loaded in
%% elsarticle.cls

我不知道如何有效地使用它。你能在这里提供一个实用的例子吗?

例如

\usepackage{epsfig}
 \usepackage{graphicx}
\usepackage{placeins}
\begin{figure}
\caption{Damage at }
\includegraphics[width=\textwidth]{fig1.pdf}
\end{figure} 
\FloatBarrier

我应该如何将图形放在手稿中。还是我需要将它们放在手稿的末尾?(注意 elsarticle 要求)。上面的代码目前将图形随机放置在文档的某个地方。为什么?

答案1

怎么样

\documentclass[preprint,12pt,authoryear]{elsarticle}
\begin{document}

\begin{figure}
\caption{abc} \label{fig:abc}
\includegraphics[width=\textwidth]{<filename>}
\end{figure}
\end{document}

只需使用以支持的格式编码的图像文件的真实文件名,而不是<filename>

相关内容