I have a pdf file (test1.pdf), which I converted to eps (test1.eps), using Adobe->Save as->eps option.
The pdf and the eps are attached in a zip file. if you open the eps in gsview you will see that for some reason the drawing is located down there..
I compiled the following code with latex, and got a good dvi:
Code: Select all
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\includegraphics{test1.eps}
\end{figure}
\end{document}
The alternative, dvi2ps+ps2pdf works, but I want to understand what is the problem with the first option, and also in my full document this option generates slightly different fonts for the text. Thus, I would like to avoid the long way and make the dvi2pdf work.
I work with WinEdt v5.5 if that matters.
Please check the attached examples and let me know if you see the problem.
Already tried:
---------------
* convert the pdf to eps using gsview... generates poor output.
* the bounding box is correct (verified by Options->EPS clip is gsview). Don't know why the image was located so far away... I guess this causes the problem.
Thanks.