如何縮排引用的一部分?

如何縮排引用的一部分?

我在引文中有一個段落,我想比引文的其餘部分添加更多的縮排。我怎樣才能做到這一點?

我不想在縮排的段落之前和之後有額外的空間。

我嘗試使用嵌套{quote}\vspace{-\baselineskip}我不喜歡 附帶的額外右邊距{quote}在此輸入影像描述

答案1

在文件類別中定義了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}

在此輸入影像描述

相關內容