인용문의 일부를 들여쓰는 방법은 무엇입니까?

인용문의 일부를 들여쓰는 방법은 무엇입니까?

인용문에 단락이 있는데, 인용문의 나머지 부분보다 들여쓰기를 더 많이 추가하고 싶습니다. 어떻게 해야 하나요?

들여쓰기된 단락 앞뒤에 추가 공간을 원하지 않습니다.

나는 중첩을 시도했지만 {quote}\vspace{-\baselineskip}함께 제공되는 추가 오른쪽 여백이 마음에 들지 않습니다 {quote}. 여기에 이미지 설명을 입력하세요

답변1

myquote환경 으로 정의된 답변은 documentclass quote에 정의되어 있지만 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}

여기에 이미지 설명을 입력하세요

관련 정보