I'm using \paragraph
as a way to have some \subsubsubsection
. They should appear as:
A) something
B) some other thing
Instead, each time I use \paragraph
I only get an A). Can someone help me understand what I'm doing wrong, please?
Here is my code:
\newcounter{somecounter}
\setcounter{somecounter}{1}
\makeatletter
\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
{-3.25ex\@plus -1ex \@minus -.2ex}%
{1.5ex \@plus .2ex}%
{\normalfont\normalsize\itshape\Alph{somecounter})}}
\makeatother
\paragraph
already has an associated counter @Marijn there is no need to allocate a new counter or use\refstepcounter
\theparagraph
to use\Alph
as you would for any other sectioning command such as\section
or\chapter
see the posted answer.