[Tex/LaTex] Adding the preface to contents

table of contents

I'm trying to add the preface to the contents along with the page on the far right.

I had written it as following:

\chapter*{Preface}

but it does not appear on the contents.
If I write it as

\chapter{Preface}

then it would be the first chapter of the book and I don't want this at all…

How can I do that?

Best Answer

Add the line

\addcontentsline{toc}{chapter}{Preface}

Just after

\chapter*{Preface}

MWE

\documentclass{book}

\begin{document}
\tableofcontents
\chapter*{Preface}
\addcontentsline{toc}{chapter}{Preface}
\chapter{First}
\end{document} 

Output

enter image description here

If you want a different alignment like this one

enter image description here

use instead

\addcontentsline{toc}{chapter}{\protect\numberline{}Preface}