引用文の一部をインデントするにはどうすればいいですか?

引用文の一部をインデントするにはどうすればいいですか?

引用文の中に段落があり、引用文の残りの部分よりもインデントを追加したいのですが、どうすればよいですか?

インデントされた段落の前後に追加のスペースは必要ありません。

{quote}ネストしてを試してみました\vspace{-\baselineskip}が、 に伴う余分な右余白が気に入りません{quote}ここに画像の説明を入力してください

答え1

myquote環境としての定義を持つ回答は、documentclassquoteで定義されていますarticleが、右余白は削減されていません。

\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}

ここに画像の説明を入力してください

関連情報