I have some issues with the vertical spacing above and below block quotes. As always, a MWE first:
\documentclass{scrreprt}
\usepackage[onehalfspacing]{setspace}
\setlength{\parindent}{0pt}
\usepackage[%
threshold = 39,
thresholdtype = words]
{csquotes}
\usepackage[%
font = small]
{quoting}
\SetBlockEnvironment{quoting}
\usepackage{etoolbox}
\AtBeginEnvironment{quoting}{\singlespacing}
\usepackage{lipsum}
\begin{document}
\lipsum[2]
\blockquote{This is a test that will show that the vertical spacing above and below this block quote is not even. Does anyone have an idea how to fix this behaviour? \LaTeX can sometimes be really frustrating. I hope that this quote has a length of 40 words.}
\lipsum[1]
\end{document}
The spacing above the block quote seems to be less than the spacing below it (0,71 inches vs. 0,75 inches if you measure from baseline to baseline). What could be the reason for that? I would like to have an exact identical vertical spacing.


parskipoption ofscrreprt. Also, you should recalculate the type area after loadingsetspaceand loadscrhackbefore loadingsetspaceas explained in the KOMA documentation. But can KOMA's algorithms deal with changing the size of font for quotations? KOMA attempts to lay out the text block sensibly based on the font dimensions.... – cfr Oct 25 '15 at 20:51\singlespacingis designed for use in the preamble - not for use in the body of the document. For that, the environmentsinglespaceis provided. See the documentation ofsetspace. – cfr Oct 25 '15 at 21:06