如何删除标题(例如表格列表)和 fancyhdr 之间的大空格?我需要在 \pagestyle 定义中设置它吗?
提前谢谢 A
\documentclass[openany,11pt]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{fancyhdr}
\fancypagestyle{plain}{%
\fancyhf{}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
\addtolength{\headheight}{0.5pt}
\fancyhead[LE,RO]{\leftmark}
\fancyhead[RE,LO]{WHAT I WANT TO SEE}}
\begin{document}
\listoffigures % Prints the list of figures
\newpage
\listoftables % Prints the list of tables
\chapter{Prämissen des Modells}
Header is correct on this page.
\newpage
\section{Grundannahmen zum Modell diskrete Betriebsstunden}
And wrong on this one.
\end{document}