¿Cómo sangrar una parte de la cita?

¿Cómo sangrar una parte de la cita?

Tengo un párrafo, en una cita, quiero agregar más sangría que el resto de la cita. ¿Cómo puedo hacer esto?

No quiero espacio adicional antes y después del párrafo con más sangría.

Intenté anidar {quote}con \vspace{-\baselineskip}pero no me gusta el margen derecho adicional que viene con {quote}. ingrese la descripción de la imagen aquí

Respuesta1

Una respuesta con una definición de myquoteentorno quotese define en articledocumentclass, pero sin reducir el margen derecho:

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

ingrese la descripción de la imagen aquí

información relacionada