双边标头格式

双边标头格式

切换到双面格式时(使用大学文档类)

\documentclass[12pt,phd,a4paper,twoside]{ucl_thesis}

所有偶数页的页眉都从“节”切换到“章”,我该如何让所有页面都以“节”作为页眉。我不确定,但我明白为什么 latex 突然在双面格式中这样做?

谢谢。

答案1

把这个放在前面\begin{document}

\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrule}{}
\fancyhf{}
\fancyhead[LE,RO]{\textsl{\thepage}}
\fancyhead[C]{\nouppercase{\textsl\rightmark}}

平均能量损失

\documentclass[12pt,phd,a4paper,twoside]{ucl_thesis}
\usepackage{lipsum}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrule}{}
\fancyhf{}
\fancyhead[LE,RO]{\textsl{\thepage}}
\fancyhead[C]{\nouppercase{\textsl\rightmark}}
\begin{document}
\chapter{My first chapter}
\section{My first section}
\lipsum
\section{My second section}
\lipsum
\end{document}

在此处输入图片描述

在此处输入图片描述

相关内容