如何消除页眉和章节标题之间的空格?

如何消除页眉和章节标题之间的空格?

我目前正在尝试创建一个系统,以便能够以可读的方式有效地组织讲义 - 但是,我遇到了一些麻烦,因为我似乎无法摆脱标题和章节标题之间嵌套的大量空白。有人能帮我找出如何摆脱这个空白吗?

\documentclass{article}

\usepackage{fancyhdr}
\usepackage{titlesec}
\usepackage[utf8]{inputenc}
\usepackage{titlesec}
\usepackage{indentfirst}
\pagestyle{fancy}

\lhead{Number Theory Part 1}
\rhead{\thepage}

\renewcommand{\headrulewidth}{0.4pt}

\def\thesection{Day \arabic{section}:}
\def\thesubsection{\arabic{section}.\arabic{subsection}}
\titleformat{\section}[block]{\Large\normalfont\bfseries\raggedright}{\hspace{0mm}\thesection}{0.5em}{} %change 0.5em to your needs

\begin{document}
\section{Test Message}
\subsection{Test Subsection}

\end{document}

答案1

\setlength{\headsep}{0pt}效果很好!感谢 MadyYuvi。:)

相关内容