Wie rückt man einen Teil eines Zitats ein?

Wie rückt man einen Teil eines Zitats ein?

Ich habe einen Absatz in einem Zitat, dem ich mehr Einzug hinzufügen möchte als dem Rest des Zitats. Wie kann ich das tun?

Ich möchte keinen zusätzlichen Platz vor und nach dem stärker eingerückten Absatz.

Ich habe es mit verschachtelt versucht {quote}, \vspace{-\baselineskip}aber mir gefällt der zusätzliche rechte Rand nicht, der dabei entsteht {quote}. Bildbeschreibung hier eingeben

Antwort1

Eine Antwort mit der Definition „ myquoteals quoteUmgebung ist in der articleDokumentklasse definiert“, jedoch ohne Reduzierung des rechten Rands:

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

Bildbeschreibung hier eingeben

verwandte Informationen