如何将文本放在段落下的新行上?我的代码如下:
\paragraph{Title}
Some text, Some text, Some text, Some text, Some text.
现在它的结局是这样的:
标题一些文本,一些文本,一些文本,一些文本,一些文本。
我希望它是这样的:
标题
一些文本,一些文本,一些文本,一些文本,一些文本。
问候
答案1
titlesec
软件包可以帮助:
\documentclass{article}
\usepackage{titlesec}
\titleformat{\paragraph}[hang]{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\begin{document}
\paragraph{Title}
\noindent
Some text, Some text, Some text, Some text, Some text.
\end{document}