有时当我们使用较长的引文时,我们希望引文段落从左侧和右侧缩进。这样做的“正确”方法是什么?
答案1
标准 LaTeX 提供quote
(无内部缩进,用于短引文) 和quotation
(内部缩进,用于长引文) 环境:
\documentclass{article}
\usepackage{lipsum}
\begin{document}
\lipsum[4]
\begin{quote}
\lipsum[4]
\end{quote}
\lipsum[4]
\begin{quotation}
\lipsum[2]\lipsum[4]
\end{quotation}
\end{document}
答案2
这就是我正在使用的memoir
文档类。
\renewenvironment{quote}{
\noindent % No indent of first character.
\topsep=0pt % No additional separator before.
\parskip=0pt % No paragraph separator.
\interlinepenalty=10000 % Prevent a page break to occur in a quote block.
\leftskip=0pt
\rightskip=0pt
\parfillskip=0pt
\RaggedRight
\itshape % Make quotations in italic.
\list{}{
\leftmargin 1em % this is the adjusting screw
\rightmargin 1em % this is the adjusting screw
}
\item
\relax
}
{\endlist}