\thanks{} erstellt doppelte Fußnoten im AAAI21-Stil

\thanks{} erstellt doppelte Fußnoten im AAAI21-Stil

Ich verwende die AAA21-Stildatei (aaai21.sty) mit der Dokumentklasse „Artikel“. Wenn ich mehrere \thanks{}Autoren eingebe, erhalte ich auf der ersten Seite doppelten Fußnotentext.

  • Verknüpfungzur styDatei.
  • Die vollständige Latex-Vorlage finden SieHier. Schauen Sie in dieLatexOrdner.

Das ist das Latex, das ich verwende.

\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]
}

Und hier ist die gerenderte Ausgabe, die doppelten Fußnotentext enthält. Kann jemand erklären, warum das passiert? Ich habe versucht, mir die styDatei anzusehen, aber möglicherweise ist sie in Ordnung. Sie können die aaai21.styDatei online abrufen.

Bildbeschreibung hier eingeben

Antwort1

Wie von Ulrike in den Kommentaren zum Originalbeitrag vorgeschlagen, behebt eine Änderung \let\footnote\thanks\relaxdas \let\footnote\relax\let\thanks\relaxProblem.

verwandte Informationen