有时(我刚刚发现)需要排版一个以块引用开头的块引用。然而,当发生这种情况时,嵌套引用的第一段的缩进是不正确的。(它似乎是应有的两倍。)
相反,如果嵌套的块引用没有开始外部引用,则缩进是正确的。
最小示例:
\documentclass{article}
\begin{document}
\begin{quotation}
\begin{quotation}
As any dedicated reader can clearly see, the Ideal of practical reason is a representation of, as far as I know, the things in themselves; as I have shown elsewhere, the phenomena should only be used as a canon for our understanding.
As any dedicated reader can clearly see, the Ideal of practical reason is a representation of, as far as I know, the things in themselves; as I have shown elsewhere, the phenomena should only be used as a canon for our understanding.
\end{quotation}
As any dedicated reader can clearly see, the Ideal of practical reason is a representation of, as far as I know, the things in themselves; as I have shown elsewhere, the phenomena should only be used as a canon for our understanding.
\end{quotation}
\end{document}
在这种情况下确保正确缩进的最佳方法是什么?
答案1
您可以在报价前丢弃任何待处理项目标签。如果您quotation
还需要在实际工作中首先\item
检查您所在的列表,但这里可以使用。
\documentclass{article}
\makeatletter
\let\oldquotation\quotation
\def\quotation{\setbox\@labels\hbox{}\oldquotation}
\makeatother
\begin{document}
\begin{quotation}
\begin{quotation}
As any dedicated reader can clearly see, the Ideal of practical reason is a representation of, as far as I know, the things in themselves; as I have shown elsewhere, the phenomena should only be used as a canon for our understanding.
As any dedicated reader can clearly see, the Ideal of practical reason is a representation of, as far as I know, the things in themselves; as I have shown elsewhere, the phenomena should only be used as a canon for our understanding.
\end{quotation}
As any dedicated reader can clearly see, the Ideal of practical reason is a representation of, as far as I know, the things in themselves; as I have shown elsewhere, the phenomena should only be used as a canon for our understanding.
\end{quotation}
\end{document}
答案2
这可能会导致其他问题,但到目前为止一切都很好。
\documentclass{article}
\let\oldquotation=\quotation
\renewcommand{\quotation}{\oldquotation\leavevmode}
\begin{document}
\begin{quotation}
\begin{quotation}
As any dedicated reader can clearly see, the Ideal of practical reason is a representation of, as far as I know, the things in themselves; as I have shown elsewhere, the phenomena should only be used as a canon for our understanding.
As any dedicated reader can clearly see, the Ideal of practical reason is a representation of, as far as I know, the things in themselves; as I have shown elsewhere, the phenomena should only be used as a canon for our understanding.
\end{quotation}% if you want the next line indented, add a blank line or \par
As any dedicated reader can clearly see, the Ideal of practical reason is a representation of, as far as I know, the things in themselves; as I have shown elsewhere, the phenomena should only be used as a canon for our understanding.
\end{quotation}
\end{document}