I am having trouble using \paragraph{} inside the onecolabstract environment. The desired goal would look something like this:
\documentclass[twocolumn]{article}
\usepackage{lipsum}
\usepackage{abstract}
\title{Minimal Example}
\author{DocBuckets}
\begin{document}
\twocolumn[
\maketitle
\begin{onecolabstract}
\textbf{Background} Abstract background text...
\textbf{Methods and Results} Abstract methods text...
\textbf{Conclusions} Abstract conclusions text...
\end{onecolabstract}
]
\section{Introduction}
\lipsum[1]
\section{Methods}
\lipsum[2]
\end{document}
But I want to use \paragraph{Background}, \paragraph{Methods and Results}, etc. instead of the \textbf{} alternatives I use in the minimal example. When I try this, I get all sorts of errors.
Perhaps relatedly, I also got errors when trying to use the \lipsum[1] method to generate abstract paragraphs in the minimal example I give. I suspect the problem is the same for \lipsum and \paragraph in onecolabstract. Is there something I can do to make this work?
