제목 뒤에 들여쓰기된 텍스트

제목 뒤에 들여쓰기된 텍스트

어떻게 하면 이를 달성할 수 있나요?

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

들여쓰기 크기를 지정하지 않고? 팁, 모든 단락을 들여쓰기하는 방법 등을 찾았지만 그건 내가 원하는 것이 아닌 것 같습니다. 쉬운 방법이 필요합니다. 많은 문서(제목 + 설명)에서 찾았는데 일종의 \paragraph{}.

답변1

@David Carlisle이 제안한 것처럼 '제목'이 자체 줄에 있는 설명 환경을 따르는 것 같습니다. 다음을 사용하면 매우 쉽게 얻을 수 있습니다 enumitem.

\documentclass{book}
\usepackage{enumitem}
\setlength\parindent{1em}

\begin{document}

\begin{description}[style=nextline, listparindent=\parindent, parsep=0pt]
  \item[The First Item]This text describes the first item.
  \item[The Second Item]This text describes the second item.
        Contrary to the description of the first item, it is quite a bit longer.

        Additionally, it consists of multiple paragraphs, which causes problems
  with redefining the item command.
\end{description}

\end{document} 

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

관련 정보