And, I'd like to add the word "Page" at the start of chapter 1 above the column of page numbers. (I've already added the word to the table of contents and listoffigurs.)
Thanks,
Code: Select all
\documentclass{book}
\usepackage{caption}
\usepackage{graphicx}
\begin{document}
\tableofcontents
\addtocontents{toc}{~\hfill\textbf{Page}\par}
\listoffigures
\addtocontents{lof}{~\hfill\textbf{Page}\par}
\chapter{One}
Pretend Link1 to: Story 1 20
Pretend Link2 to: Story 2 29
Pretend Link3 to: Story 3 35
Pretend Link4 to: Story 4 38
\chapter{Go tell it on the mountain}
\bigbreak
\chapter{Darned if I know }
This is the third chapter in the story.
\begin{minipage}{\linewidth}
\begin{center}
\includegraphics[width=\textwidth]{example-image}
\captionof{figure}{this is my caption}
\end{center}
\end{minipage}
\chapter{Happy New Year}
This is the fourth chapter in the story.
\begin{minipage}{\linewidth}
\begin{center}
\includegraphics[width=\textwidth]{example-image}
\captionof{figure}{this is my caption}
\end{center}
\end{minipage}
\chapter{Five}
This is the fifth chapter in the story.
\begin{minipage}{\linewidth}
\begin{center}
\includegraphics[width=\textwidth]{example-image}
\captionof{figure}{this is my caption}
\end{center}
\end{minipage}
\end{document}