Graphics, Figures & TablesArrangement of split Picture over two Pages

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
heniczyna
Posts: 7
Joined: Tue Apr 03, 2012 10:35 pm

Arrangement of split Picture over two Pages

Post by heniczyna »

Hi all,

I would like to put "algorytm_programu.pdf" into my document. But I have a problem with putting huge picture into my document. Please see my "mwe.pdf" file which is effect of PDFLaTeX (p. 5).

How to split this big figure into two or more pages? Is this possible automatically or should I split manually this picture in some graphic software?

Below you can find "mwe.tex" and the source for the figure.

Thank you in advance.
Attachments
algorytm_programu.pdf
(99.32 KiB) Downloaded 173 times
mwe.tex
(26.27 KiB) Downloaded 191 times
mwe.pdf
(161.73 KiB) Downloaded 144 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

Arrangement of split Picture over two Pages

Post by kaiserkarl13 »

Does it work to change

Code: Select all

\includegraphics[width=\textwidth]{algorytm_programu}
to

Code: Select all

\includegraphics[height=0.9\textheight]{algorytm_programu}
?

It might also help if you cropped the bottom to eliminate that whitespace; you can even do that with the includegraphics command if you wish:

Code: Select all

\includegraphics[clip,trim=0 430 0 0,height=0.93\textheight]{algorytm_programu}
As for converting to EPS for LaTeX, you can always do that with pdf2ps (if you want EPS, run ps2epsi on that). Though there's very little reason to do that unless you're writing for someone that wants EPS files.
Post Reply