如何删除 elsarticle 第 1 页的作者姓名?

如何删除 elsarticle 第 1 页的作者姓名?

我们正在撰写一篇论文,提交给 Elsevier 期刊。该期刊要求作者姓名仅出现在标题/摘要页上,而不出现在论文的第一页上(以支持双盲审查流程)。

我们如何在摘要页上保留作者姓名但删除首页上的作者姓名?

以下是一段代码:

\documentclass[times,preprint,10pt,authoryear]{elsarticle}
\usepackage[english]{babel}
\begin{document}

\title{A Framework for Analytics and Simulation}
\author[]{R ~K\fnref{fn1}}
 \ead{[email protected]}

 \author[]{Jack ~G\corref{cor1}\fnref{fn2}}
 \ead{[email protected]}

 \author[]{P ~E\fnref{fn3}}
 \ead{[email protected]}

\cortext[cor1]{Principal corresponding author}
\fntext[fn1]{LSU}
\fntext[fn2]{CEAS }
 \fntext[fn3]{CA Inc.}
 \begin{frontmatter}
\begin{abstract}
sdfrtwrtgsfgbgnghnfghn
\end{abstract}
\begin{keyword}
P net \sep sys doc \sep model of  systems \sep analytics \sep simulation \sep verification 
\end{keyword}
  \end{frontmatter}
\maketitle
\section{Introduction}
Process flowcharts have been in use by industrial engineers since 1921 publication of  ...
\end{document}

pdf 在摘要页和第一页上都显示作者姓名。

答案1

请查看elsarticleCTAN 来源

这两者为您的文档提供了以下框架:

\documentclass[..]{elsarticle}

% <packages>

\begin{document}

\begin{frontmatter}

% <title content> \title{..}, \author{..}, \address{..}, ...

\begin{abstract}
% <abstract>
\end{abstract}

\begin{keyword}
% <keywords>
\end{keyword}

\end{frontmatter}

% <article content>

\end{document}

在 期间\end{frontmatter},设置了与标题相关的全部内容。它以 开头\maketitle,然后是摘要,然后是关键字。因此,无需发出\maketitleas 来frontmatter负责执行此操作。

在此处输入图片描述

\documentclass[times,preprint,10pt,authoryear]{elsarticle}

\usepackage[english]{babel}

\begin{document}

\begin{frontmatter}

\title{A Framework for Analytics and Simulation}
\author[]{R ~K\fnref{fn1}}
\ead{[email protected]}

\author[]{Jack ~G\corref{cor1}\fnref{fn2}}
\ead{[email protected]}

\author[]{P ~E\fnref{fn3}}
\ead{[email protected]}

\cortext[cor1]{Principal corresponding author}
\fntext[fn1]{LSU}
\fntext[fn2]{CEAS }
\fntext[fn3]{CA Inc.}

\begin{abstract}
sdfrtwrtgsfgbgnghnfghn
\end{abstract}

\begin{keyword}
P net \sep sys doc \sep model of  systems \sep analytics \sep simulation \sep verification 
\end{keyword}

\end{frontmatter}

\section{Introduction}
Process flowcharts have been in use by industrial engineers since~1921 publication of \ldots

\end{document}

相关内容