自定义 \paragraph 后的空格

自定义 \paragraph 后的空格

这个问题很简单,但搜索起来有点困难,所以可能已经有人问过了。自定义\paragraph节标题后出现的间距以使第一段的格式更像第二段的最简单的方法是什么?

在此处输入图片描述

\documentclass{article}

\begin{document}
\paragraph{Paragraph title.} Now for some text.

\noindent\textbf{Paragraph title.} Now for some text.
\end{document}

答案1

使用起来很简单titlesec

\documentclass{article}
\usepackage{titlesec}
\titlespacing{\paragraph}{0pt}{*3.25}{*1.05}

\begin{document}

Some text. Some more text. Some more text. Some more text. Some more text. Some more text. Some more text. Some more text. Some more text.
\paragraph{Paragraph title.} And now for another text.

\noindent\textbf{Paragraph title.} And now for another text.

\end{document} 

最后两个参数\titlespacing使用简化的语法:对于与前一个文本的垂直间距,*3.25意味着3.25ex具有一定的可拉伸性和微小的可收缩性。最后一个参数是与段落标题后的文本的间距,也*1.05意味着1.05ex具有一定的可拉伸性,但不能收缩。在此处输入图片描述

相关内容