I want to create a subsubparagraph heading (in order to comply with phd guidlines for formatting). I've copied code from article.cls and just made everything 'lower'. However, when I do, although the subsubparagraph exists, it prints the title twice.
MWE
\documentclass{article}
\makeatletter
\newcounter{subsubparagraph}[subparagraph]
\renewcommand\thesubsubparagraph{\thesubparagraph.\@arabic\c@subsubparagraph}
\newcommand\subsubparagraph{\@startsection{subsubparagraph}{6}{\parindent}%
{3.25ex \@plus1ex \@minus .2ex}%
{-1em}%
{\normalfont\normalsize\bfseries}}
\newcommand*\l@subsubparagraph{\@dottedtocline{6}{10em}{5em}}
\makeatother
\begin{document}
\paragraph{Foo}
\subparagraph{Bar}
\subsubparagraph{Foo bar!!!}
\end{document}

The subsubparagraph needs to have all the properties of subparagraph, with possible additional indentation (which currently I've omitted to keep the new code as close to that found in article.cls)
\newcommand{\subsubparagraphmark}[1]{}. I don't see why an additional sectional unit is needed, as already five below\chapterare provided. – egreg Jan 18 '13 at 16:47