I have a document Latex that contains many sections. In a given section I want to create two subsections that contain each different subparagraphs. I don't know why I get an error when compiling it (! Argument of \@sect has an extra }.\par \subsection)? Here is my code:
\section{ Title}
\subsection{subsection 1}
\paragraph{~\newline}
\subparagraph{ first subparagraph}
\subparagraph{... (something between parenthesis)}
\subparagraph{4 choices::
\begin{itemize}
\item 1.
\item 2.
\item 3.
\item 4.
\end{itemize}
}
\subsection{subsection 2}
\paragraph{~\newline}
\subparagraph{1}
\subparagraph{2}
\subparagraph{ 3 .... here I include two parenthesis because I have them in my original paragraph \left(something\right)}
\begin{itemize}
\item 1.
\item 2.
\end{itemize}
}
Could you please help me ?

\paragraph{~\newline}. – cfr Nov 24 '14 at 01:40itemizepretending to beenumeratewithin\subsection… I would really recommend reading an introduction to LaTeX. The Wikibook is a pretty solid reference. After you read that, I'd also recommend something a little more up-to-date (liketexdoc lshort). – Sean Allred Nov 24 '14 at 01:45