Responder1
Conforme sugerido por @David Carlisle, parece que você está procurando um ambiente de descrição, com o 'título' em uma linha própria. Você pode obter isso facilmente com 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}