Hello all.
1. How do you include a .svg image to a DVI (or PDF for that matter)?
2. I made .eps images with
MetaPost, and to skip right to PDF, I included this little code, to make it convert the images "on the fly" (I think..):
Code: Select all
\usepackage{ifpdf}
\ifpdf
\DeclareGraphicsRule{*}{mps}{*}{}
\fi
As I said the image was created by
MetaPost. However, when I tried to make an .eps image with
Mathematica, I had to first compile the document as DVI, and then convert it to PDF. If I compiled directly to PDF, the image wouldnt appear. Why is this? Is .eps files generated different depending on the program that makes it?
Thanks!