如何缩进引文的一部分?

如何缩进引文的一部分?

我有一个段落,在引文中,我想添加比引文其余部分更多的缩进。我该怎么做?

我不希望在缩进的段落前后有额外的空格。

我尝试使用嵌套{quote}\vspace{-\baselineskip}但我不喜欢随之而来的额外右边距{quote}在此处输入图片描述

答案1

在 documentclass 中定义了一个myquote带有环境定义的答案,但没有减少右边距:quotearticle

\documentclass{article}
\usepackage{blindtext}
\newenvironment{myquote}
               {\list{}{}%In this second argument was \rightmargin\leftmargin that is unwanted for you
                \item\relax}
               {\endlist}

\begin{document}
\blindtext
\begin{quote}
Our first list with three items: % Corrected the ``two'' but not in the photo
\begin{enumerate}
    \item test line here that will reach the right margin inside my quotation and will go to the next line
    \item test line here that will reach the right margin inside my quotation and will go to the next line
    \begin{myquote}
    This list contains the next two items:
    \begin{enumerate}
        \item test line here that will reach the right margin inside my quotation and will go to the next line
        \item test line here that will reach the right margin inside my quotation and will go to the next line
        \end{enumerate}
    \end{myquote}
    \item test line here that will reach the right margin inside my quotation and will go to the next line
    \end{enumerate}
\end{quote}
\blindtext

\end{document}

在此处输入图片描述

相关内容