I want my two-sided pages to have different headers: on the left (even) side, the title of the book, and on the right (odd) side, the chapter title, without number. (This is pretty normal for non-technical books.)
I adapted my code from Werner's answer to Dave's 2015 question "Add Chapter Title to Header - without “Chapter 1” without success. The left (even) header is fine, but all I get is a separation line on the top of the right (odd) pages with no chapter title.
See minimum (non-)working example below. Is the problem in line 6? Do I need to rearrange some lines? I've searched sundry places including the fancyhdr documentation without success. Thanks in advance, Artmancc
\documentclass[12pt]{book}
\usepackage{fancyhdr,lipsum}
\pagestyle{fancy}
\fancyhf{} % clear all header and footer fields
\fancyhead[CE]{T~I~T~L~E~~~~O~F~~~~T~H~I~S~~~~B~O~O~K}
\fancyhead[CO]{\leftmark} %%% Is this the problem?
\fancyfoot[LE,RO]{\thepage}
\renewcommand{\chaptermark}[1]{\markboth{\MakeUppercase{#1}}{}}
\begin{document}
\chapter{First Chapter}
\lipsum[1-9]
\clearpage{\pagestyle{empty}\cleardoublepage} %% no header on blank left page
\chapter{Last Chapter}
\lipsum[10-18]
\end{document}

