I have a figure which takes up an entire page of space. When I use \includegraphics to put it in my document, instead of appearing on the next page, it appears at the end of the section.
However, I want the full-page figure to appear on the following page. In other words, in the below MWE, I want:
(page 1) all of TEXT A, followed by the amount of TEXT B necessary to fill the rest of the page
(page 2) the full-page figure
(page 3) the remainder of TEXT B
\documentclass{article}
\usepackage{graphicx} % for \includegraphics
\usepackage{lipsum} % for filler text
\begin{document}
\section{First Section}
\lipsum[1-4] % TEXT A
\includegraphics{full_page_image}
\lipsum[1-4] % TEXT B
\section{Second Section}
\end{document}
