I have the following WME:
\documentclass[twoside]{book}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm,headheight=28pt,bindingoffset=6mm]{geometry}
\usepackage[pagestyles]{titlesec}
\usepackage{lipsum}
\usepackage{fancyhdr}
\titleformat{\chapter}[display]
{\normalfont\bfseries}{}{10pt}{\Huge\thechapter.\quad}
\fancypagestyle{mypagestyle}{%
\fancyhf{}% Clear header/footer
\fancyhead[OC]{\thechapter.\quad\chaptertitle}% Author on Odd page, Centred
\fancyhead[EC]{\thechapter.\quad\chaptertitle}% Title on Even page, Centred
\fancyfoot[C]{\thepage}%
\renewcommand{\headrulewidth}{.4pt}% Header rule of .4pt
}
\pagestyle{mypagestyle}
\begin{document}
\pagestyle{mypagestyle}
\chapter{Introduction}
\lipsum[1-40]
\end{document}
Using this WME, the headers only display the chapter number. How can I get the headers to display the chapters name?



\chaptertitleis atitleseccommand, notfancyhdr. I don't think both packages cooperate. – Bernard Jun 30 '17 at 14:30titleps. – Bernard Jun 30 '17 at 17:01