问题:
displayquote
使用时删除右缩进csquotes
。
最小工作示例(MWE):
\documentclass{article}
\usepackage{showframe}
\usepackage{csquotes}
\renewcommand*\ShowFrameColor{\color{red}}
\begin{document}
\begin{displayquote}
"If you want to design intervention X [for the purpose/function Y in context Z], then you are best advised to give that intervention the characteristics A, B, and C [substantive emphasis], and to do that via procedures K, L, and M [procedural emphasis], because of arguments P, Q, and R."
\end{displayquote}
\end{document}
输出:
期望输出:
引用没有正确的缩进。
答案1
我认为csquotes
只是在内部使用标准quote
环境作为基础。因此,您可以重新定义它以删除正确的缩进:
\renewenvironment{quote}
{\list{}{}%
\item\relax}
{\endlist}