The command \newtheorem in the ACM sig-alternate document class takes two arguments. The first is the name of the environment and the second is the header, rendered in small-caps letters, that appears at the start of each occurrence of the construct.
Example MWE:
\documentclass{sig-alternate-05-2015} \newtheorem{IP}{Interpretation Problem} \newtheorem{axiom}{Axiom} \begin{document} % Copyright \setcopyright{acmcopyright} % DOI \doi{10.475/123_4} % ISBN \isbn{123-4567-24-567/08/06} %Conference \conferenceinfo{PLDI '13}{June 16--19, 2013, Seattle, WA, USA} \acmPrice{\$15.00} \conferenceinfo{WOODSTOCK}{'97 El Paso, Texas USA} \title{ABC} \numberofauthors{2} \author{ \alignauthor ABC\\ \affaddr{Department of Computer Science and Engineering} % 2nd. author \alignauthor XYZ\\ \affaddr{Department of Computer Science and Engineering}\\ } \maketitle \begin{abstract} Here is the abstract. \end{abstract} \section{Intro} This is the first section. \begin{IP} Given a set of services $S$ consisting $o$ operations, identify the subset of faulty operations... \end{IP} \begin{axiom} contents... \end{axiom} \end{document} By this, its appropriate number is appended and the text is set in italics.
I want to remove the numbering from this environment. How to do that?
Moreover, IEEE supports this. If we use
\newtheorem*{axiom*}{Axiom}
It would meet the need. However, the same is not working in ACM SIG template. Please suggest how to fix this issue.
The snapshot is attached for your reference. Have a look. How to remove the numbering from the newtheorem style environment.


axiomenvironment isn't defined. Also, the\author{...}and\end{document}statements are missing.