標題後縮排文本

標題後縮排文本

我怎樣才能實現這個目標

在此輸入影像描述

不指定縮排大小?我找到了提示,如何縮排所有段落等,但我認為,這不是我想要的。我需要簡單的方法,因為我在許多文件(標題+描述)中找到了它,它看起來像是某種\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} 

在此輸入影像描述

相關內容