Как сделать отступ в части цитаты?

Как сделать отступ в части цитаты?

У меня есть абзац в цитате, я хочу добавить отступ больше, чем остальная часть цитаты. Как это сделать?

Мне не нужны дополнительные пробелы перед и после абзаца с большим отступом.

Я пробовал использовать вложенный {quote}вариант, \vspace{-\baselineskip}но мне не нравится дополнительное правое поле, которое появляется вместе с {quote}. введите описание изображения здесь

решение1

Ответ с определением myquoteкак quoteсреды определен в articledocumentclass, но без уменьшения правого поля:

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

введите описание изображения здесь

Связанный контент