防止章节和节出现在每个页眉中

防止章节和节出现在每个页眉中

我下载了一个不错的乳胶类,但我遇到了一个问题——每个页面的标题都会标有章节名称或节名。

在此处输入图片描述

正如您所看到的,它使页面看起来非常混乱。该类的代码是这里。我尝试了很长时间来解决这个问题,但我做不到。我在网上搜索,发现一些包含mark该信息的命令,我尝试注释掉包含此类命令的行。仍然没有运气,需要一些帮助 - 我只希望页码显示在标题中。

答案1

响应直接从这里复制,使用以下fancyhdr包: https://stackoverflow.com/questions/62234123/remove-chapter-title-from-header-on-all-pages-latex-book-class

antiquebook由于代码在你的序言中,所以你根本不需要修改。

\documentclass[12pt,oneside]{antiquebook}
\usepackage{fancyhdr}            % Permits header customization. See header section below.
\fancypagestyle{plain}{
    \lhead{}
    \fancyhead[R]{\thepage}
    \fancyhead[L]{}
    \renewcommand{\headrulewidth}{0pt}
    \fancyfoot{}
}

\pagestyle{fancy}
\fancyhead[R]{\thepage}
\fancyhead[L]{}
\renewcommand{\headrulewidth}{0pt}
\fancyfoot{}

\usepackage{lipsum}

\begin{document}
    \chapter{A very very very very very very very very very long chapter title}
     \lipsum[1-5]
    \section{another very very very very very long section title}
    \lipsum[1-5]
\end{document}

相关内容