我尝试使用,\paragraph{\centering paragraph's title}
但它不起作用。我正在寻找一种\paragraph
不使用语境。
谢谢您的帮助,祝您有美好的一天。
答案1
答案2
另一种方法是使用scrartcl来自 koma-script 的类
\documentclass{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lipsum}
% to have paragraph not in run-in format, afterskip has to be postive
\RedeclareSectionCommand[
afterskip = .5em,
]{paragraph}
%center title
\addtokomafont{paragraph}{\centering}
\begin{document}
\lipsum[11]
\paragraph{Paragraph title}
\lipsum[1]
\end{document}