I would like to add abstracts of certain references (which may contain multiple paragraphs) to the main body of a document. However, when I add them using \citefield{KEY}{abstract}, double line breaks do not get converted to new paragraphs (using a \par is fine, though). Is there a way to make this work?
A working example is:
\documentclass{article}
\usepackage{biblatex}
\begin{filecontents*}{bibliography.bib}
@misc{Test1,
abstract = {
First paragraph.
Second paragraph.
}
}
@misc{Test2,
abstract = {
First paragraph.
\par
Second paragraph.
}
}
\end{filecontents*}
\bibliography{bibliography.bib}
\begin{document}
\section*{Test 1}
\citefield{Test1}{abstract}
\section*{Test 2}
\citefield{Test2}{abstract}
\end{document}
