在 Elsevier 文章中,缩写以脚注的形式呈现,出现在第一页的底部,位于与标题或作者相关的任何其他脚注之前,没有脚注标记。
我的问题如下:如果我将缩写放在前言中,我会在第一页之前得到一个带有缩写脚注的空白页。如果我将其放在前言之后或某个字段内,那么它会出现在作者脚注之后。代码:
\documentclass[preprint,12pt,authoryear]{elsarticle}
%% abbreviations command (footnote without a footnote mark)
\newcommand{\abbreviations}[1]{%
\begingroup\def\thefootnote{}\footnotetext{\textit{Abbreviations:}#1}\endgroup}
\begin{document}
\begin{frontmatter}
\title{Title}
%\abbreviations{S1, symbol1; S2, symbol2.}
\author{Author 1}
\author{Author 2\corref{cor1}}
\ead{[email protected]}
\cortext[cor1]{Corresponding author.}
\end{frontmatter}
\abbreviations{S1, symbol1; S2, symbol2.}
\end{document}
\endinput
答案1
elsarticle
\nonumnote
提供在第一页放置未编号脚注的命令。使用此功能,您可以将您的代码编码\abbreviations
为
\newcommand{\abbreviations}[1]{%
\nonumnote{\textit{Abbreviations:\enspace}#1}}
并在 内使用它frontmatter
。s nonumnote
打印在curnote
s 之前,但在tnote
s 之后。
\documentclass[preprint,12pt]{elsarticle}
\newcommand{\abbreviations}[1]{%
\nonumnote{\textit{Abbreviations:\enspace}#1}}
\journal{Nuclear Physics B}
\begin{document}
\begin{frontmatter}
\title{Title}
\author{Author 1}
\author{Author 2\corref{cor1}}
\ead{[email protected]}
\cortext[cor1]{Correspanding author.}
\abbreviations{S1, symbol1; S2, symbol2.}
\end{frontmatter}
\end{document}
\endinput