El látex adjunto produce el encabezado de las páginas 2 y 4 para que parezcan
donde me hubiera gustado que "CONTENIDOS" fuera "Contenidos" y "Capítulo 0: Rresumé" fuera "Rresumé".
Todos los encabezados de los siguientes capítulos deberían seguir siendo "Capítulo 1: Algo".
Pregunta
¿Alguien sabe qué estoy haciendo mal?
Látex
\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}
Respuesta1
Cambiar la definición de \chaptermark
a
\renewcommand{\chaptermark}[1]{%
\ifnum\value{chapter}>0
\markboth{Chapter \thechapter{}: #1}{}%
\else
\markboth{#1}{}%
\fi}
Respuesta2
Esto parece resolver el problema del "Contenido".
\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}
...
Aunque no entiendo por qué tiene que ser así \scshape Contents}{\scshape Contents}}
y no solo \scshape Contents}}
.