使用 displayquote 和 csquotes 时仅删除右缩进

使用 displayquote 和 csquotes 时仅删除右缩进

问题:

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}

相关内容