使用 elsart.cls 修改 \thanks 生成的符号

使用 elsart.cls 修改 \thanks 生成的符号

我正在使用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}

在此处输入图片描述

相关内容