The following code gives me a "Preface" and a "Prologue", but with, at the top of their respective pageS, the word CONTENTS (see screen capture bellow, for the Preface page). It's as if the "Preface" and the "Prologue" were still part of the document's contents section.
I can't figure out how to not have that word up there. Thanks.
\documentclass[11pt,oneside,letterpaper]{book}
\usepackage{graphicx}
\graphicspath{ {TSTPT_Images/} }
%\usepackage[a4paper]{geometry}
\usepackage{microtype}
\usepackage{xcolor}
\usepackage[utf8]{inputenc}
\usepackage[colorlinks=false, pdfborder={0 0 0}]{hyperref}
\usepackage{cleveref}
\begin{document}
\frontmatter
\title{\Huge THIS IS MY TITLE}
\author{Name of author here}
\date{\today}
\maketitle
\begin{center}
\chapter*{\parbox{\linewidth}{\centering Book One:\\Title of Book One}}
%\fbox{\includegraphics[width=0.6\textwidth]{image}}
\end{center}
\clearpage
\tableofcontents
\cleardoublepage
\phantomsection
\addcontentsline{toc}{section}{Preface}
\section*{Preface}
Text here.
\cleardoublepage
\phantomsection
\addcontentsline{toc}{section}{Prologue}
\section*{Prologue}
Text here.
\cleardoublepage
\mainmatter
\phantomsection
\addcontentsline{toc}{section}{Chapter The First}
\chapter*{Chapter The First}
\section{Title Uno}
Text here.
\cleardoublepage
\section{Title Dos}
\cleardoublepage
\phantomsection
\addcontentsline{toc}{section}{Chapter The Second}
\chapter*{Chapter The Second}
\section{Title Tres}
Text for test.\\
\end{document}

\tableofcontentsis on the level of a chapter, whereas preface and prolog are\sections, hence they appear as sub-units of the table of contents. Use\partcommands for dividing the document into sub-books. Moreover, your table of contents will be for the whole document, not only for the first book. There are packages for having several table of documents. – gernot Sep 17 '16 at 14:27chapter*{... Book One...}intended as a subtitle-page? – gernot Sep 17 '16 at 14:42booksectional units. Use\chapter*for your Preface and reformat the way the chapters look in the ToC (using something liketocloft) rather than setting a chapter as a section. – Werner Sep 17 '16 at 16:59\chapter*take the headers of their previous\chapter– Werner Sep 17 '16 at 17:00