[Tex/LaTex] How to change paragraph separation to indent within blockquote (csquotes)

csquotesindentationparagraphsquotingspacing

I am using the package csquotes to generate a blockquote. csquotes inserts what looks like half a blank line between the paragraphs within the quote.

I would prefer to have no vertical space but an indent like new paragraphs in regular text. How can I do this?

I have prepared the following example:

\documentclass{article}
\usepackage{csquotes}
\begin{document}
\section{}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. 
Integer a purus vel lacus eleifend feugiat sed id eros. 
%
\blockquote{Vestibulum ante ipsum primis in faucibus orci 
luctus et ultrices posuere cubilia Curae; Nunc congue,
\emph{here ends the first paragraph within the blockquote.}

\emph{This should be indented.} Aenean vulputate dolor id nulla  
sollicitudin quis facilisis sem ultrices. Sed congue consequat 
viverra. Suspendisse malesuada sodales viverra.}
%
Nullam eget elit vel nunc interdum accumsan. Phasellus posuere 
enim eu eros blandit viverra.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. 
Integer a purus vel lacus eleifend feugiat sed id eros.
\end{document}

Best Answer

You can change the block environment that \blockquote uses with \SetBlockEnvironment. By default it uses the quote environment which puts some vertical space between paragraphs. Set it to use the quotation environment, \SetBlockEnvironment{quotation}, to get a newline and indention between paragraphs. Note that this will indent the first paragraph in the blockquote too (and it will apply to every command in csquotes that creates blockquotes).

\documentclass{article}

\usepackage{csquotes}
\SetBlockEnvironment{quotation}% I've only added this

\begin{document}

\section{}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. 
Integer a purus vel lacus eleifend feugiat sed id eros. 
%
\blockquote{Vestibulum ante ipsum primis in faucibus orci 
luctus et ultrices posuere cubilia Curae; Nunc congue,
\emph{here ends the first paragraph within the blockquote.}

\emph{This should be indented.} Aenean vulputate dolor id nulla  
sollicitudin quis facilisis sem ultrices. Sed congue consequat 
viverra. Suspendisse malesuada sodales viverra.}
%
Nullam eget elit vel nunc interdum accumsan. Phasellus posuere 
enim eu eros blandit viverra.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. 
Integer a purus vel lacus eleifend feugiat sed id eros.

\end{document}

csquote's \blockquote using the quotation environment.