How can I seperate two huge images into two pages? I tried \newline but no success.
\documentclass[12pt]{book}
\usepackage{subfig}
\usepackage{caption}
\usepackage{graphicx}
\begin{document}
\begin{figure}
%\ContinuedFloat
\centering
\subfloat{
\centering
\includegraphics[width=435pt]{img-molmicros2.png}
}
\newline
\subfloat{
\centering
\includegraphics[width=451pt]{img-molmicros3.png}
}
\caption{sdfsdfsdf}
\label{fgdfg}
\end{figure}
\end{document}

subfloatTeX will place the figures at a place where it 'thinks' they are suitable, this might be on one single page.\newlineis of no use here. – Nov 11 '14 at 10:14