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 175 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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

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