Skip to content

Instantly share code, notes, and snippets.

@yegor256
Last active April 22, 2024 10:53
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 yegor256/aa6215039cf687e4353c61385f23dd6c to your computer and use it in GitHub Desktop.
Save yegor256/aa6215039cf687e4353c61385f23dd6c to your computer and use it in GitHub Desktop.
A template of a research paper that uses the "acmart" document class

Use the following LaTeX template, if a conference asks you to use the acmart document class (create your orcid here):

\documentclass[sigplan,nonacm,anonymous,review]{acmart}
\usepackage[utf8]{inputenc}
\usepackage{natbib}
\title{My article}
\author{Yegor Bugayenko}
  \orcid{0000-0001-6370-0678}
  \email{yegor256@gmail.com}
  \affiliation{
    \institution{Huawei}
    \city{Shenzhen}
    \country{China}}
\author{John Doe}
  \orcid{0000-0001-0000-0000}
  \email{your email}
  \affiliation{
    \institution{University}
    \city{City}
    \country{Country}}
\begin{abstract}
This paper is about something new.
\end{abstract}
\begin{document}
\maketitle
\section{Introduction}
Hello, world!
\bibliographystyle{ACM-Reference-Format}
\bibliography{main}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment