arxiv 上传问题:未定义的控制序列。\@currentauthors

arxiv 上传问题:未定义的控制序列。\@currentauthors

当我使用本地pdflatex进行编译时没有出现问题。

这是 arxiv 的日志输出。

[verbose]: Creating arXiv submission AutoTeX object
[verbose]: *** Using TeX Live 2020 ***
[verbose]: Calling arXiv submission AutoTeX process
[verbose]: TeX/AutoTeX.pm: admin_timeout = minion
[verbose]: <acmart.cls> is of type 'TeX auxiliary'.
...
[verbose]: <named.bst> is of type 'TeX auxiliary'.
[verbose]: ~~~~~~~~~~~ Processing file 'kdd-arxiv.tex'
[verbose]: TEXMFCNF is unset.
[verbose]: ~~~~~~~~~~~ Running pdflatex for the first time ~~~~~~~~
[verbose]: Running: "(export HOME=/tmp PATH=/texlive/2020/bin/arch:/bin; cd /submissions/4346183/ && pdflatex 'kdd-arxiv.tex' < /dev/null)" 2>&1
[verbose]: This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020) (preloaded format=pdflatex)
restricted \write18 enabled.
entering extended mode
(./kdd-arxiv.tex
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-09-06> (./acmart.cls
Document Class: acmart 2022/05/10 v1.85 Typesetting articles for the Associatio
n for Computing Machinery
(/texlive/2020/texmf-dist/tex/latex/xkeyval/xkeyval.sty
...
(/texlive/2020/texmf-dist/tex/latex/subfigure/subfigure.sty
****************************************
* Local config file subfigure.cfg used *
****************************************
(/texlive/2020/texmf-dist/tex/latex/subfigure/subfigure.cfg))
(/texlive/2020/texmf-dist/tex/latex/tools/multicol.sty)
(/texlive/2020/texmf-dist/tex/latex/multirow/multirow.sty)
(/texlive/2020/texmf-dist/tex/latex/makecell/makecell.sty
(/texlive/2020/texmf-dist/tex/latex/tools/array.sty))
(/texlive/2020/texmf-dist/tex/latex/preprint/balance.sty)
! Undefined control sequence.
<argument> \@currentauthors

l.110 \begin{document}

?
! Emergency stop.
<argument> \@currentauthors

l.110 \begin{document}

! ==> Fatal error occurred, no output PDF file produced!
Transcript written on kdd-arxiv.log.

更新

最小错误重现代码:

\documentclass[sigconf]{acmart}
\acmYear{2022}

\title{XXX}

\author{XXX}
% !!! no error occurs without next line
\authornote{Both authors contributed equally to this research.}
\affiliation{%
  \institution{XXX}
  \city{XXX}
  \state{XXX}
  \country{XXX}}
\email{XXX}

\begin{document}
\maketitle
\section{Introduction}
XXXX
\end{document}

答案1

最后我通过查看官方解决了这个问题计算机协会 (ACM) - SIG 会议论文集模板

只需将标题和作者移至“文档”块即可解决问题。

但我仍然不知道问题到底是什么,以及为什么它在本地编译时没有任何问题,但只发生在 arxiv 上。如果有人有任何线索,请告诉我。我真的很感激。

相关内容