带有贝叶斯分析期刊样式文件的额外空白页

带有贝叶斯分析期刊样式文件的额外空白页

请参阅以下 MWE,它使用贝叶斯分析期刊风格文件。

\documentclass[bib]{ba}
\inserttype[ba0001]{article}
\begin{document}
\title[Short Version]{Long Version}
\author{\fnms{Faheem} \snm{Mitha}\ead[label=e1]{[email protected]}}

\maketitle
\begin{abstract}
  foo
\end{abstract}
\end{document}

这会为我生成两页 PDF。如果我删除空白行,或在空白行上添加 %,则将变成一页。这对我来说似乎是一种令人惊讶的行为。有人能告诉我这是否是一个错误吗?如果不是,我应该如何解决它?

答案1

尝试这个:

\documentclass[bib]{ba}
\inserttype[ba0001]{article}   
\begin{document}
\title[Short Version]{Long Version}       %% this line
\author{faheem}
 {\fnms{Faheem} \snm{Mitha}\footnotemark[1]\ead{[email protected]}}    %% this line

\maketitle

\footnotetext[1]{Affiliation First Author}    %% this added.
\renewcommand{\thefootnote}{\arabic{footnote}}   %% this may be needed.
\begin{abstract}
  foo
\end{abstract}



\end{document}

在此处输入图片描述

什么地方出了错?

  1. 标题应该是

    \title[Short article title]{Long title for title page of article insert}
    

    请注意简称周围的括号。

  2. 作者应该是

     \author{authors}{their details line \snms etc}
    
  3. \ead[label=e1]{[email protected]}}不应该有标签,而应该有footnotemark

相关内容