我正在写一篇文章,他们要求以下格式
第一页:论文标题、作者姓名和单位。第二页:论文标题和摘要第三页:论文标题和正文。
我有以下结构
\documentclass[preprint,12pt]{elsarticle}
\begin{document}
\begin{frontmatter}
\title{My Title}
\author{That's me}
\address{Affiliation goes here}
\end{frontmatter}
\newpage
\title{My Title}
\begin{abstract}
Lorem ipsum something something
\end{abstract}
\begin{keyword}
Keywords here
\end{keyword}
\newpage
\title {My Title}
\section{Introduction}
Lorem ipsum something something
\end{document}
它不显示前两页。我尝试使用\begin{frontmatter}
\end{frontmatter}
,但它在每一页都复制了作者信息。我该如何调整他们想要的内容?