I am trying to create a structured abstract using \paragraph{} for headings.
The first one works but from there on, I get LaTeX Error: Something's wrong--perhaps a missing \item.
I cut this to a MWE:
\documentclass{article}
\title{Test}
\author{Me}
\begin{document}
\maketitle
\begin{abstract}
\paragraph{Background}
There has been a massive social media campaign \dots
\paragraph{Methods}
I review the papers \dots
\end{abstract}
Enough to test.
\end{document}
And this correctly does Background in this style:
Background There has been a massive social media campaign
But Methods triggers the error. What is puzzling is that \section* works (but adds more vertical space than I want). Why should \paragraph behave like itemising markup but \section* doesn’t?
