\thanks{} は AAAI21 スタイルで重複した脚注を作成します

\thanks{} は AAAI21 スタイルで重複した脚注を作成します

私は、記事ドキュメント クラスで AAA21 スタイル ファイル (aaai21.sty) を使用しています。\thanks{}著者に複数の著者を配置すると、1 ページ目に重複した脚注テキストが表示されます。

  • リンクファイルにsty
  • 完全なLaTeXテンプレートは以下からご覧いただけます。ここ中を見てくださいラテックスフォルダ。

これは私が使用しているラテックスです。

\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問題は解決します。

関連情報