63 lines
2.6 KiB
TeX
63 lines
2.6 KiB
TeX
\section{Template Overview}
|
|
As noted in the introduction, the ``\verb|acmart|'' document class can
|
|
be used to prepare many different kinds of documentation --- a
|
|
double-anonymous initial submission of a full-length technical paper, a
|
|
two-page SIGGRAPH Emerging Technologies abstract, a ``camera-ready''
|
|
journal article, a SIGCHI Extended Abstract, and more --- all by
|
|
selecting the appropriate {\itshape template style} and {\itshape
|
|
template parameters}.
|
|
|
|
This document will explain the major features of the document
|
|
class. For further information, the {\itshape \LaTeX\ User's Guide} is
|
|
available from
|
|
\url{https://www.acm.org/publications/proceedings-template}.
|
|
|
|
\subsection{Template Styles}
|
|
|
|
The primary parameter given to the ``\verb|acmart|'' document class is
|
|
the {\itshape template style} which corresponds to the kind of publication
|
|
or SIG publishing the work. This parameter is enclosed in square
|
|
brackets and is a part of the {\verb|documentclass|} command:
|
|
\begin{verbatim}
|
|
\documentclass[STYLE]{acmart}
|
|
\end{verbatim}
|
|
|
|
Journals use one of three template styles. All but three ACM journals
|
|
use the {\verb|acmsmall|} template style:
|
|
\begin{itemize}
|
|
\item {\texttt{acmsmall}}: The default journal template style.
|
|
\item {\texttt{acmlarge}}: Used by JOCCH and TAP.
|
|
\item {\texttt{acmtog}}: Used by TOG.
|
|
\end{itemize}
|
|
|
|
The majority of conference proceedings documentation will use the {\verb|acmconf|} template style.
|
|
\begin{itemize}
|
|
\item {\texttt{sigconf}}: The default proceedings template style.
|
|
\item{\texttt{sigchi}}: Used for SIGCHI conference articles.
|
|
\item{\texttt{sigplan}}: Used for SIGPLAN conference articles.
|
|
\end{itemize}
|
|
|
|
\subsection{Template Parameters}
|
|
|
|
In addition to specifying the {\itshape template style} to be used in
|
|
formatting your work, there are a number of {\itshape template parameters}
|
|
which modify some part of the applied template style. A complete list
|
|
of these parameters can be found in the {\itshape \LaTeX\ User's Guide.}
|
|
|
|
Frequently-used parameters, or combinations of parameters, include:
|
|
\begin{itemize}
|
|
\item {\texttt{anonymous,review}}: Suitable for a ``double-anonymous''
|
|
conference submission. Anonymizes the work and includes line
|
|
numbers. Use with the \texttt{\acmSubmissionID} command to print the
|
|
submission's unique ID on each page of the work.
|
|
\item{\texttt{authorversion}}: Produces a version of the work suitable
|
|
for posting by the author.
|
|
\item{\texttt{screen}}: Produces colored hyperlinks.
|
|
\end{itemize}
|
|
|
|
This document uses the following string as the first command in the
|
|
source file:
|
|
\begin{verbatim}
|
|
\documentclass[sigconf]{acmart}
|
|
\end{verbatim}
|