I am facing a specific requirement for the format of the table of contents.
I am using the book class.
Rather than 1 Introduction # in the table of contents, the requirement is Chapter 1: Introduction # (in which # is the page number).
In the text, rather than Chapter 1 (new line) Introduction the requirement is Chapter 1: Introduction.
What is the simplest way to achieve this?
\documentclass{book}
\usepackage{blindtext}
\begin{document}
\frontmatter
\tableofcontents
\mainmatter
\chapter{Introduction}
\section{My subsection title}
\blindtext[1]
\end{document}