1

I would like to know how can I cut a figure in a way that some part is show in one page and the continuation in other page. Actually it just take the all figure to the next page and I get a lots of space empty that really looks ugly. Thanks.

Sebastiano
  • 54,118
mjsr
  • 3,425
  • Splitting the figure is likely to look very bad (unless you're writing a book and you have a figure that goes across facing pages like in the FAQ answer Lev Bishop mentioned). Why don't you let the figure float? – TH. Sep 05 '10 at 21:15
  • This really can't be helpfully answered without a minimal example. Since that has not be added in 6 years, it seems unlikely to make an appearance now. – cfr Jan 19 '17 at 00:42

2 Answers2

1

Does this FAQ answer solve your problem? If not, please give more details about what it is you are trying to achieve.

David Carlisle
  • 757,742
Lev Bishop
  • 45,462
  • hi Lev, i'm trying to put a figure that is too big for one page. In the beginning of the page i have an intro text and then the image, but the intro isn't too big, so the empty space in the page is just too large. My idea is that automatically show a part of the figure in the intro page and the left part in the next page. – mjsr Sep 05 '10 at 19:53
  • Like i say in the question right now the entire figure is moved to the next page. Also the figure is so big that the caption part is out of margin, so spliting the figure in two parts will be a good solution. One alternative is that I manually split the figure in two parts but i hope that exists an automatic way of doing this. – mjsr Sep 05 '10 at 19:54
0

One can use adjustbox to trim and clip an image vertically, spreading it over two pages at exactly the point needed:

enter image description here

\documentclass{article}

\usepackage{adjustbox}
\usepackage{lipsum}

\begin{document}

\lipsum[1-4]

\vfill

\noindent
\adjustbox{trim=0pt {\dimexpr\height-9\baselineskip} 0pt 0pt, clip}{\includegraphics[width=\linewidth]{example-image}}

\noindent
\adjustbox{trim=0pt 0pt 0pt 9\baselineskip, clip}{\includegraphics[width=\linewidth]{example-image}}

\lipsum[5-10]

\end{document}

The above image is split at 9 lines from the top with a possible \vfill before it (to make up for any incomplete text blocks).

Related: How to include a picture over two pages, left part on left side, right on right (for books)?

Werner
  • 603,163