正如您在 MWE 中看到的,我使用以下命令自定义显示在页面中心的章节标题:
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\normalfont\huge\bfseries\centering}{\centering\thechapter}{20pt}{\Huge}
因此,当我的标题比较长时,每行的换行符会尽可能快地出现。然后段落标题会以“大端”金字塔的形式出现(实际上是三角形……)。
例如,使用以下 MWE:
\documentclass{book}
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\normalfont\huge\bfseries\centering}{\centering\thechapter}{20pt}{\Huge}
\begin{document}
\chapter{Justification de l’étendue terminologique}
\end{document}
我得到了这个渲染:
当预期结果是:
\chapter
我知道我可以使用类似命令的可选参数\chapter[Justification de l’étendue terminologique]{Justification de\\ l’étendue terminologique}
。
但我的目标是让 LaTeX 自己完成,而不是强迫我手动完成。那么,是否有一些软件包或其他东西可以让标题获得这种行为?