在下面的例子中,我希望第一个脚注以符号 * 作为标记,文档中所有剩余的脚注都从 1 开始具有正常的阿拉伯语枚举。
我正在尝试遵循给出的答案 使用符号代替数字作为脚注标记 但没能取得多大成功。
我究竟做错了什么?
谢谢
\documentclass[preprint,1p,times]{elsarticle}
\journal{Some Journal}
\begin{document}
\begin{frontmatter}
\title{Some Title}
\renewcommand*{\thefootnote}{\fnsymbol{footnote}}
\author{Fabio\footnote{I want this footnote to have an asterisk}}
\setcounter{footnote}{0}
\renewcommand*{\thefootnote}{\arabic{footnote}}
\begin{abstract}
This is the abstract\footnote{I want this footnote to have a number}
\end{abstract}
\begin{keyword}
keyword1 \sep keyword2
\end{keyword}
\end{frontmatter}
\end{document}
答案1
在此文档类中, 中的脚注\author
对文档的其余部分没有影响。您无需重置计数器或恢复\thefootnote
。
\documentclass[preprint,1p,times]{elsarticle}
\journal{Some Journal}
\begin{document}
\begin{frontmatter}
\title{Some Title}
\author{\renewcommand*{\thefootnote}{\fnsymbol{footnote}}%
Fabio\footnote{I want this footnote to have an asterisk}}
\begin{abstract}
This is the abstract\footnote{I want this footnote to have a number}
\end{abstract}
\begin{keyword}
keyword1 \sep keyword2
\end{keyword}
\end{frontmatter}
\end{document}