[Tex/LaTex] acmart titlenote does not work

acmartfootnotesoverleaf

\titlenote is not working. It always shows "Title note" in the generated pdf.

\documentclass[sigplan, anonymous]{acmart}

 \begin{document}
 \title{Title}
 \titlenote{This title note does not show!}

 \begin{abstract}
 This paper provides a sample of a \LaTeX\ document which conforms,
 somewhat loosely, to the formatting guidelines for
 ACM SIG Proceedings.
 \end{abstract}
 \maketitle

 \end{document}

Here you have the link to the overleaf document.

Best Answer

This is because you have enabled the anonymous option to the document class.

This is wanted, as the title note might contain details useful for the identification of the authors, so it is suppressed with the anonymous option.

Related Question