Graphics, Figures & Tables ⇒ Arrangement of split Picture over two Pages
Arrangement of split Picture over two Pages
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
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
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Arrangement of split Picture over two Pages
Code: Select all
\includegraphics[width=\textwidth]{algorytm_programu}
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}