如何删除‘准备提交给 JCAP’这一行?

如何删除‘准备提交给 JCAP’这一行?

我正在使用 JCAP latex 包(jcappub.sty) 来编写 latex 文档。但我总是在文档的第一页看到一行 - “准备提交给 JCAP”。如何删除这一行?

答案1

欢迎!只需添加

\makeatletter
\gdef\@fpheader{}
\makeatother

\begin{document}

例子:

\documentclass{article}
\usepackage{jcappub}
\title{An example title where \boldmath $x=1$}
\author[a]{First Author,} 
\author[a,b,1]{Second Author% 
\note{On leave from XXX.}} 
\author[a,c]{and Third Author}
\affiliation[a]{Institution,\\
 Street number, City, Country}
\affiliation[b]{Department, University,\\
 Street number, City, Country}
\affiliation[c]{Another University,\\
Street number, City, Country}
\emailAdd{[email protected]} 
\emailAdd{[email protected]} 
\emailAdd{[email protected]}
\abstract{Text, text $math$, $math$ text, text. Text, text $math$, $math$ text,
text... }
\keywords{keyword one, keyword two} 
\arxivnumber{1234.5678}
\makeatletter
\gdef\@fpheader{}
\makeatother
\begin{document}
\maketitle
\section{Introduction}
\end{document}

相关内容