I have a huge figure, approx 2000 pixels width and 9000 pixels height (approx -- just to give an idea).
\begin{figure}[!htb]
\centering
\ContinuedFloat
\includegraphics[scale = 0.2]{model.png}
\end{figure}
\FloatBarrier
The problem is, even with a scale of 0.2, it is not fitting on the page. I can go further, and scale it down even more, but if I do so, it'll become totally unreadable.
Since it doesn't fit in the page, the bottom part of the image is cut-off. Is there any way I can spread my image across two pages so that no info is lost?
I looked at posts like this, but they deal with more than one figures (sub-figures), while I only have a single image. Any help would be great. Thanks...
[!htb]!!! as the main effect of that is to omitpso prevent it being on a page with just figures, and specifying latex had to leave room for text on the page as well. You want exactly the opposite[p]. Just split the image in two using an image editor then two[p]figures will appear on adjacent pages. – David Carlisle May 30 '20 at 21:30breakabletcolorboxwill also work. Or just use thetrimclippackage to do appropriate clips. – May 30 '20 at 21:31