标题后的缩进文本

标题后的缩进文本

我怎样才能实现这个

在此处输入图片描述

不指定缩进大小?我找到了一些技巧,如何缩进所有段落等等,但我认为这不是我想要的。我需要简单的方法,因为我在许多文档(标题 + 描述)中都发现了它,看起来那是某种\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} 

在此处输入图片描述

相关内容