\fancyhead[C] 无法与 ACM 模板正确显示

\fancyhead[C] 无法与 ACM 模板正确显示

我正在撰写一篇提交给 ACM 的论文,并使用这里提供的模板:https://github.com/acmccs/format/blob/master/ccs-template.tex。我遇到的问题是针对以下代码:


\documentclass[sigconf, anonymous]{acmart}

\fancyhf{} % Remove fancy page headers 
\fancyhead[C]{Anonymous submission \#9999 to ACM CCS 2019} % TODO: replace 9999 with your paper number
\fancyfoot[C]{\thepage}

\setcopyright{none} % No copyright notice required for submissions
\acmConference[Anonymous Submission to ACM CCS 2019]{ACM Conference on Computer and Communications Security}{Due 15 May 2019}{London, TBD}
\acmYear{2019}
\settopmatter{printacmref=false, printccs=true, printfolios=true} % We want page numbers on submissions

它应该\fancyhead在页眉中间显示内容,但是它在左侧显示论文标题,在\acmConference右侧显示内容。我还需要做什么才能让它出现吗?

答案1

acmart重置花哨的标题\begin{document},因此您的重新定义将被覆盖。它可以再次覆盖它,但我想知道为什么有人会想要它,因为 ACM 希望在左侧标题中显示论文标题。

无论如何,如果你想覆盖类设置,请将 fancyheader 代码 \begin{document}

相关内容