32 lines
519 B
TeX
32 lines
519 B
TeX
% use the base acmart.cls
|
|
% use the sigplan proceeding template with the default 10 pt fonts
|
|
% nonacm option removes ACM related text in the submission.
|
|
\documentclass[sigplan,nonacm]{acmart}
|
|
|
|
|
|
% enable page numbers
|
|
\settopmatter{printfolios=true}
|
|
|
|
|
|
\begin{document}
|
|
\title{FAT allocator}
|
|
|
|
|
|
\begin{abstract}
|
|
...
|
|
\end{abstract}
|
|
|
|
|
|
\maketitle % should come after the abstract
|
|
|
|
|
|
% add the paper content here
|
|
|
|
|
|
% use the ACM bibliography style
|
|
\bibliographystyle{ACM-Reference-Format}
|
|
% \bibliography{...}
|
|
|
|
|
|
\end{document}
|