章节标题距离

章节标题距离

我正在使用 titlesec 包来调整文本的章节标题。然而,我对这些新标题和文本主体之间的距离感到困惑。也就是说,距离变得比没有进行调整时(即章节标题为默认标题)小得多。

我注意到,距离的减少可能与文本主体“向上”移动有关。

以下是我整理的内容:

\documentclass[12pt, twoside, a4paper]{book}
\usepackage{graphics}
\usepackage[dvips]{graphicx}
\usepackage{fancyhdr}
\usepackage[namelimits]{amsmath}
\usepackage[mathcal]{euscript}
\usepackage{blindtext}
\usepackage{amsmath}
\usepackage[textheight=630pt]{geometry}
\topmargin -0.1in
\setlength{\headheight}{14.71pt}
\parskip=3pt
\addtolength{\parindent}{2pt}
\usepackage{titlesec}

\titleformat{\chapter}[display]
       {\bfseries\Large}
       {\filright\MakeUppercase{\chaptertitlename} \Huge\thechapter}
       {.5ex}
       {\titlerule[.1ex]\filleft}


\begin{document}
\chapter*{Introduction}
     \blindtext[3]
     \blinddocument
\end{document}

有什么办法可以将此距离恢复为默认值吗?titlesec 文档对于这个问题没有太大帮助(至少对我来说)。

答案1

你必须使用

\titlespacing*{\chapter}{0pt}{80pt}{50pt}

并根据需要修改值。

相关内容