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 173 times
-
- mwe.tex
- (26.27 KiB) Downloaded 191 times
-
- mwe.pdf
- (161.73 KiB) Downloaded 144 times
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
-
- 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}