I am using the titlesec package in conjunction with the ACM SIG Alternate document class to create a special kind of subsubsection as follows:
\documentclass{sig-alt-full}
% +++++ Begin Experiment Subsection ++++++
\newcommand{\subparagraph}{} % not defined in cls template
\usepackage{titlesec}
\titleclass{\experiment}{straight}[\subsection]
\newcounter{experiment}
\renewcommand{\theexperiment}{(\roman{experiment})}
\titleformat{\experiment}[hang]{\normalfont\normalsize\bfseries}
{Experiment\,(\roman{experiment}):}{.5em}{}[]
\titlespacing{\experiment}{0pt}{*2.5}{.5em}
% +++++ End Experiment Subsection ++++++
\begin{document}
\section{Section}
\subsection{Subsection}
\subsubsection{Subsubsection}
\subsection{Experiments}
\experiment{Not a Subsubsection}
\end{document}
The problem is that elsewhere in my document I want to use plain old subsubsections. However, with the definition of my new titleclass, the formatting of the plain old subsubsection heading looks different than before and the numbering is also gone from the heading.
How can I get my \experiment subsubsections while leaving the regular subsubsections untouched?


titlesecis incompatible with your class: "Non standard sectioning command detected. Using default spacing and no format." Do you want that the experiments are numbered in sequence with subsubsections? – egreg Sep 18 '12 at 10:52\experimentin subsection 1.1? – egreg Sep 18 '12 at 15:53