Remove from latex a foot note

footnotesremove

I use the acm template sample-authordraft.tex file.

I see in the pdf at the end of the first column of the first page something with grey color text which start with this:

"Permission to make digital or hard copies of all or part of this work
for personal or classroom use is granted without fee provided that
copies are not made or distributed for profit or commercial advantage
and that copies bear this notice and the full citation on the first
page. Copyrights for components of this work owned by others than ACM
must be honored. Abstracting with credit is permitted. To copy
otherwise, or republish, to post on servers or to redistribute to
lists, requires prior specific permission and/or a fee. Request p…"

In which file I can find this and remove it?

Best Answer

Use the nonacm option.

From the class documentation:

enter image description here

\documentclass[nonacm]{acmart}

\usepackage{lipsum}

\begin{document}

\author{A. Uthor}
\title{Title}

\maketitle

\lipsum

\end{document}

enter image description here

Related Question