목록 구조 들여쓰기를 변경하는 방법은 무엇입니까?

목록 구조 들여쓰기를 변경하는 방법은 무엇입니까?

아래 예에서는 "긴 항목 텍스트" 항목이 너비를 초과하는 경우 다음 줄로 줄바꿈됩니다. 그런데 이 연속된 두 번째 줄은 "항목 설명"과 같은 정도로 들여쓰기되어 있습니다. 계속되는 "항목 텍스트"에 첫 번째 줄과 동일한 들여쓰기를 제공하는 방법을 생각할 수 있습니까? 시간 내 주셔서 감사합니다.

\begin{설명}
  \item[*] 긴 항목 텍스트 \hfill \\
    항목 설명
\end{설명}

나는 그것을 갖고 싶습니다:

* 긴 항목 텍스트 ...
  그건 여기서 계속됩니다.
    항목 설명

답변1

어떤 레이아웃을 원하는지 확실하지 않지만 enumitem패키지를 사용하면 매개변수를 쉽게 실험할 수 있습니다. 아마도:

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

\documentclass{article}
\usepackage{enumitem}
\begin{document}

\begin{description}[itemindent=0pt,listparindent=2em,labelwidth=1em,]
  \item[*] Long item text 
 that continues here.
 that continues here.
 that continues here.
 that continues here.
 that continues here.

    Item description
that continues here.
that continues here.
that continues here.
that continues here.
\end{description}

\end{document}

답변2

David의 솔루션과 매우 유사합니다.

\documentclass{article}

\usepackage{enumitem}

\begin{document}

\begin{description}[itemindent=!,labelwidth=!,listparindent=\parindent]
  \item[*] Long item text text text text text text text text text text text text text text text text text text text text text text text

  Item description
\end{description}

\end{document} 

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

관련 정보