Skip to content

Instantly share code, notes, and snippets.

@1292765944
Created February 8, 2018 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1292765944/e82200577e363c857da6c27c2a380d38 to your computer and use it in GitHub Desktop.
Save 1292765944/e82200577e363c857da6c27c2a380d38 to your computer and use it in GitHub Desktop.
ACM sigcof latex
Add the lines
\settopmatter{printacmref=false} % Removes citation information below abstract
\renewcommand\footnotetextcopyrightpermission[1]{} % removes footnote with conference information in first column
\pagestyle{plain} % removes running headers
below the \documentclass line.
Removing DOI information only: Using the command \acmDOI{} to set the DOI to an empty string has only a limited effect: In the ACM reference format and in the copyright notice the prefix https://doi.org/ still remains. Only when using the class option authorversion, this prefix will vanish in the footnote, but will still be part of the ACM reference. (Imho this is a bug.) Here is a hack to get rid of this prefix (and of any DOI that has been set).
Add the lines
\makeatletter
\renewcommand\@formatdoi[1]{\ignorespaces}
\makeatother
after the \documentclass line. This will remove the DOI line in the ACM reference format completely (including the line break). The conference information in the footnote will still retain the line break, which leads to a small extra vertical space. To avoid this, suppress the complete copyright notice by \renewcommand\footnotetextcopyrightpermission[1]{} (see above), or redefine \footnotetextcopyrightpermission in a more sophisticated way by just removing the \@formatdoi command with the preceding \\ from the original definition (see the class file).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment