喜歡「目錄」和「第 0 章」的版面嗎?

喜歡「目錄」和「第 0 章」的版面嗎?

附加的乳膠產生第 2 頁和第 4 頁的頁眉,如下所示

在此輸入影像描述 在此輸入影像描述

我希望“CONTENTS”為“Contents”,“Chapter 0: Rresumé”為“Rresumé”。

以下所有章節標題仍應為「第 1 章:某事」。

問題

有誰知道我做錯了什麼?

乳膠

\documentclass[a4paper,12pt]{book}
\usepackage{fancyhdr}
\usepackage{titlesec}
\usepackage[nottoc]{tocbibind}

\pagestyle{fancyplain}
\renewcommand{\chaptermark}[1]{\markboth{Chapter \thechapter{}: #1}{}}
\lhead[\fancyplain{}{\bfseries\thepage}]
    {\fancyplain{}{\bfseries\rightmark}}
\rhead[\fancyplain{}{\bfseries\leftmark}]
    {\fancyplain{}{\bfseries\thepage}}
\cfoot[]{}
\addtolength{\headheight}{1.6pt}
\renewcommand{\sectionmark}[1]{\markright{\thesection{} #1}}
\lhead[\fancyplain{}{\bfseries\thepage}]
    {\fancyplain{}{\bfseries\rightmark}}
\rhead[\fancyplain{}{\bfseries\leftmark}]
    {\fancyplain{}{\bfseries\thepage}}
\cfoot[]{}
\addtolength{\headheight}{1.6pt}

\renewcommand{\chaptertitlename}{}
\titleformat{\chapter}[hang]{\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter:}{1em}{} 

\begin{document}
\tableofcontents
\chapter*{Resum\'{e}}
\addcontentsline{toc}{chapter}{Resum\'{e}}
\chaptermark{Rresum\'{e}}
aaa
\newpage
aaa
\end{document}

答案1

\chaptermark將的定義更改為

\renewcommand{\chaptermark}[1]{%
  \ifnum\value{chapter}>0
    \markboth{Chapter \thechapter{}: #1}{}%
  \else
    \markboth{#1}{}%
  \fi}

答案2

這似乎解決了“內容”問題。

\makeatletter
\renewcommand\tableofcontents{%
    \chapter*{\contentsname
        \@mkboth{%
%           \scshape\MakeLowercase{\contentsname}}{\scshape\MakeLowercase{\contentsname}}}%
           \scshape Contents}{\scshape Contents}}%
    \@starttoc{toc}%
    \if@restonecol\twocolumn\fi
    }
\makeatother      

\begin{document}

...

雖然我不明白為什麼它必須是\scshape Contents}{\scshape Contents}},而不僅僅是\scshape Contents}}

相關內容