节、小节、小子节等之间的间距

节、小节、小子节等之间的间距

我正在写我的学士论文。问题是:标准。

问题:如何使文本和标题(章节、节、小节等)之间保持间距,但仍保持连续节+小节+小小节之间的间距(例如一半间距)(将节{1.4}和小节{1.4.1}之间的间距减少到一半间距)

示例 1:

\chapter{Практична частина}
...some text...
\section{Обгрунтування}
...other text

在此处输入图片描述

这已经足够好了。但在下一个例子中:

在此处输入图片描述

章节与小节之间差距很大。

答案1

就像 Bernard 在评论中所说的那样,为了使您的部分和文本彼此粘在一起而没有不必要的空格,您需要添加如下内容:

\usepackage[compact]{titlesec}         % you need this package
\titlespacing{\section}{0pt}{0pt}{0pt} % this reduces space between (sub)sections to 0pt, for example
\AtBeginDocument{%                     % this will reduce spaces between parts (above and below) of texts within a (sub)section to 0pt, for example - like between an 'eqnarray' and text
  \setlength\abovedisplayskip{0pt}
  \setlength\belowdisplayskip{0pt}}

根据您的需要更改值。

相关内容