Como recuar uma parte da citação?

Como recuar uma parte da citação?

Tenho um parágrafo, numa citação, quero adicionar mais recuo do que o resto da citação. Como posso fazer isso?

Não quero espaço adicional antes e depois do parágrafo mais recuado.

Tentei aninhado {quote}com \vspace{-\baselineskip}, mas não gosto da margem direita extra que vem com {quote}. insira a descrição da imagem aqui

Responder1

Uma resposta com definição de myquoteambiente quoteé definida em articledocumentclass, mas sem reduzir a margem direita:

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

insira a descrição da imagem aqui

informação relacionada