Given the minimal working example below: How would I force the figure to be on the same page as the chapter headline "The End", without making it smaller?
\documentclass[12pt]{report}
\usepackage{lipsum}
\usepackage[demo]{graphicx}
\begin{document}
\chapter{The Start}
\lipsum[1-2]
\chapter*{The End}
\begin{figure}
\centering
\includegraphics[height=8cm]{A}
\caption{Caption}
\end{figure}
\end{document}
\begin{figure}[t!]will put it above The End.\begin{figure}[h!]will put it below. (Tested usingexample-image.) – John Kormylo Jul 12 '23 at 11:57