elsarticle:两个标题页,一个仅包含标题和作者信息,另一个仅包含标题和摘要

elsarticle:两个标题页,一个仅包含标题和作者信息,另一个仅包含标题和摘要

我正在使用 elsarticle 类,并且我希望获得以下内容:

第一页:仅标题和作者信息(所属机构、地址等)

第二页:仅标题、摘要和关键词,没有作者信息。

正文应从第三页开始。

我找到了将摘要放在第二页的方法,方法是\pprintMaketitle删除第一页摘要上方和下方的水平线,并在第二页上添加带有水平线的摘要。虽然这可以将摘要发送到第二页,但我还需要第二页上的标题。在下面的 MWE 中,我尝试重用仅在第二次添加摘要的环境。但是,即使我第二次调用frontmatter,作者信息似乎也会被转移到第二页。\author[]{}frontmatter

有没有办法用 elsarticle 实现我想要的效果?

谢谢。

\documentclass[11pt,authoryear, times]{elsarticle}

\linespread{1.5}
\makeatother

\setlength{\bibsep}{0.0pt}
\makeatletter
\def\ps@pprintTitle{%
   \let\@oddhead\@empty
   \let\@evenhead\@empty
   \let\@oddfoot\@empty
   \let\@evenfoot\@oddfoot
}
\makeatother

\begin{document}

\begin{frontmatter}

\title{\textbf{Title goes here}}

\author[a1]{John Doe\corref{cor1}}
\cortext[cor1]{John Doe notes}
\ead{[email protected]}
\address[a1]{John Doe's affiliation}

\end{frontmatter}

\newpage

\begin{frontmatter}

\author[]{}

\begin{abstract}
Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper. Summary of what John Doe did in this paper.  
\end{abstract}

\begin{keyword}
keyword 1 \sep keyword 1\\
\end{keyword}
\end{frontmatter}

\newpage
\end{document}

相关内容