1

The eps file is very large. If it is forced to be in one page, then labels in the figure are too small to read, especially when print.

Is it possible to let this eps file cross pages during latex compilation? Any other solutions?

In latext, the source eps file is in the link 1, and it is included as

\begin{figure}
  \centering
  \includegraphics[scale=.29, angle=90]{graphjit/DYNGuardWithTestHandle820_dot_source}  
  \caption{\textcolor{red}{Set \textit{equivalent} to be $G_{root}$}}
  \label{fig:dot_source}
\end{figure}

And the output is in 2.

Result in pdf after latext compilation

shijie xu
  • 531
  • 1
  • 7
  • 16
  • Probably it is a problem related a incorrect bounding box of your eps file. http://tex.stackexchange.com/questions/22063/how-to-fix-eps-with-incorrect-bounding-box – Sebastiano Jan 04 '17 at 16:55
  • You could crop it into two separate parts: see http://tex.stackexchange.com/questions/57418/crop-an-inserted-image – Thruston Jan 04 '17 at 17:16
  • if you only make pdf then you can simply make that page bigger, but that doesn't work well if the document is intended for paper. – David Carlisle Jan 04 '17 at 20:15

1 Answers1

0

You can cut down the image in pieces using the viewport and clip options of \includegraphics. See the docs of package graphicx for the details.

\documentclass{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[viewport=0 0 3in 5in,clip]{example-image-a}
\newpage
\includegraphics[viewport=3in 0 6in 5in,clip]{example-image-a}
\end{document}

enter image description here

gernot
  • 49,614