我正在使用elsart.cls
来格式化我正在写的一篇论文,但我真的想使用不同的符号来表示附在标题后面的致谢脚注。目前,该\thanks
命令会在标题旁边生成一个上标“1”,并使用致谢作为第一个脚注。我想将其设为 ,\dagger
并将论文中的第一个脚注设为脚注 #1。我尝试过这个命令:
\documentclass{elsart}
\makeatletter
\renewcommand{\@fnsymbol}[1]{\ifcase#1\or\dagger\else\@arabic{\numexpr#1-1\relax}\fi}
\makeatother
但它似乎没有起作用。
答案1
elsarticle
不支持该\thanks
命令
\documentclass{elsarticle}
\begin{document}
\title{This is a specimen title\tnoteref{t1,t2}}
\tnotetext[t1]{This document is a collaborative effort.}
\tnotetext[t2]{The second title footnote which is a longer
longer than the first one and with an intention to fill
in up more than one line while formatting.}
\author{foo and bar}
\maketitle
\end{document}