调整书籍/报告类中章节标题的行距

调整书籍/报告类中章节标题的行距

在我的报告中,有些章节标题很长,而且不止一行。它们之间的间距不美观。我需要减小行距。请提出解决方案。

答案1

以下定义来自 report.cls\renewcommand{\baselinestretch}{0.85}已添加。根据您的喜好调整延伸。章节标题最好短一些。

\makeatletter
\renewcommand\@makechapterhead[1]{%
  \vspace*{50\p@}%
  {\parindent \z@ \raggedright \normalfont
    \ifnum \c@secnumdepth >\m@ne
        \huge\bfseries \@chapapp\space \thechapter
        \par\nobreak
        \vskip 20\p@
    \fi
    \interlinepenalty\@M
    \Huge
    \renewcommand{\baselinestretch}{0.85}
     \bfseries #1\par\nobreak
    \vskip 40\p@
  }}
\makeatother

相关内容