在我的论文(书籍文档)中,我也在章节的第一页上显示标题(章节标题和页码)。对于每个第一页,我想删除章节名称,只保留页码。这将防止重复。从第二页开始,应使用经典标题(章节/会话名称 + 页码)。我也希望 TOC 和 LOF 也这样做,但 TOC 在第一页上根本不显示标题。
任何帮助将不胜感激。
真挚地,
乌迪乌布。
相关编码如下:
\documentclass[openright,a4paper,12pt,twoside]{book}
\titleformat{\chapter}[display]{\normalfont\huge\bfseries}{\chaptertitlename\\thechapter}{16pt}{\Large}
\usepackage{fancyhdr}
\setlength{\headheight}{15.2pt}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{
\markboth{\thechapter.\ #1}{}}
\renewcommand{\sectionmark}[1]{
\markright{\thesection.\ #1}}
\lhead[\thepage]{\leftmark}
\rhead[\rightmark]{\thepage}
\fancyfoot[C]{} %remove page number from footer
\makeatletter %insert header on title pages
\let\ps@plain\ps@fancy
\makeatother
\begin{document}
... %other pages here
\newpage
\begin{onehalfspacing}
\section*{Acknowledgments}
These are the aknowledgments
\end{onehalfspacing}
\cleardoublepage
\begin{doublespace}
\pagenumbering{roman}
\setcounter{page}{11}
\tableofcontents
\thispagestyle{fancy}
\end{doublespace}
\newpage
\thispagestyle{plain}
\addtocontents{lof}{\protect\addcontentsline{toc}{chapter}{Figures}}
\listoffigures
\mainmatter
\pagenumbering{arabic}
\pagestyle{fancy}
\chapter{Lorem Ipsum}
Lorem Ipsum
\end{document}
答案1
线路
\let\ps@plain\ps@fancy
负责您获得的行为。建议您使用它的人并没有帮到您:它使plain
页面样式(在章节起始页上默认使用)等同于fancy
页面样式。
只需删除该行即可。