I need a lower heading level than subsubsection and hence I am turning towards \paragraph. I am happy with not having it numbered but I do want it to stand on a line of it's own and be italic. I have tried the following:
\documentclass{memoir}
\usepackage{lipsum}
\begin{document}
\setparaheadstyle{\itshape}
\let\origparagraph\paragraph
\renewcommand*{\paragraph}{%
\origparagraph{#1} \\
}
\paragraph{Lorem ipsum}
\lipsum[1-2]
\end{document}
which sadly gives me:
! Illegal parameter number in definition of \paragraph.
<to be read again>
1
l.9 }
So clearly I can't renew the \paragraph command quite in that way. How should I do it?
