删除节标题第二行的缩进

删除节标题第二行的缩进

所有标题在章节、小节等中的显示均会缩进所有行,如下所示:

1.1    A very long heading that
       goes over multiple lines.

当左边的数字很长时,这看起来有点可笑,因为它会使缩进非常大。我想改变它,这样只有第一行缩进,即像这样:

1.1    A very long heading that
goes over multiple lines.

默认行为的 MWE(顶部):

\documentclass{book}
\begin{document}
\mainmatter
\chapter{The First Chapter}
\section{Example of a very long title with many words that goes over at least two lines}
\end{document}

答案1

这段简单的代码将限制悬挂线的缩进。您可以在之前输入它们\begin{document}

\makeatletter
\def\@hangfrom#1{\setbox\@tempboxa\hbox{{#1}}%
      \hangindent 0pt%\wd\@tempboxa
      \noindent\box\@tempboxa}
\makeatother

您可以在以下位置找到章节标题的进一步格式标题安全包裹。

相关内容