
我正在將 AAA21 樣式檔案 (aaai21.sty) 與文章文檔類別一起使用。當\thanks{}
作者進行多個標註時,我在第一頁得到了重複的腳註文字。
這是我用的乳膠
\title{-------}
\author{
% Authors
Auth 1\footnote{equal contribution}\textsuperscript{\rm 3}\footnote{work done as part of},
Auth 2\footnotemark[1]\textsuperscript{\rm 2}\thanks{work done while a},
Auth 3\footnotemark[1]\textsuperscript{\rm 1},
Auth 4\textsuperscript{\rm 4}\footnotemark[2],
Auth 5\textsuperscript{\rm 1},
Auth 6\textsuperscript{\rm 1}\\
}
\affiliations{
% Affiliations
\textsuperscript{\rm 1} Aff 1 \\
\textsuperscript{\rm 2} Aff 2 \\
\textsuperscript{\rm 3} Aff 3 \\
\textsuperscript{\rm 4} Aff 4 \\
[email protected], [email protected], [email protected], [email protected], [email protected], [email protected]
}
這是渲染的輸出,其中有重複的腳註文字。有人可以指出為什麼會發生這種情況嗎?我嘗試查看該sty
文件,但可能沒問題。您可以aaai21.sty
在線獲取該文件。
答案1
正如 Ulrike 在原始帖子的評論中建議的那樣,更改\let\footnote\thanks\relax
為\let\footnote\relax\let\thanks\relax
可以解決該問題。