在acmart
模板中,我尝试删除自动放置在第一页的作者地址脚注。以下是该脚注的副本:
Authors’ addresses: first_name last_name, University of California Davis, 1 Shields Ave, Davis, CA, 95616, USA, [email protected];
你能告诉我怎样才能将其删除吗?
答案1
您可以使用选项调用文档类anonymous
。但是,这会删除作者的所有标识,并将作者打印为ANONYMOUS AUTHOR(S)
。
您也可以设置一个特殊的宏来\@empty
:
\makeatletter
\let\@authorsaddresses\@empty
\makeatother
以上内容用于检查是否提供了作者地址的条件。但是,整个脚注都是基于此条件设置的,因此设置\@authorsaddresses
为\@empty
会跳过设置包含作者凭据的脚注的过程。
\documentclass{acmart}
\title{A title}
\author{An author}
\address{An address}
\email{[email protected]}
\makeatletter
\let\@authorsaddresses\@empty
\makeatother
\begin{document}
\maketitle
\end{document}