Is it possible to get LaTeX to recognize my SVG drawings? I'm writing a paper and doing figures in Inkscape, normally I just export the SVG to EPS and use
epstopdf and
pdflatex; however this time I have a particuarly complicated figure that I used some transparencies in, and when I export to EPS the transparent bits become opaque. I've tried messing with the figure and exporting it to PNG but it looks pixelated in the PDF, I'd really rather keep it as a vector drawing if at all possible.
Here's the LaTeX source I tried using to include the SVG drawing:
Code: Select all
\begin{figure}
\centering
\includegraphics{euler-angles.svg}
\caption{Euler angles \label{fig:euler-angles}}
\end{figure}
And the error from pdflatex:
Code: Select all
! LaTeX Error: Unknown graphics extension: .svg.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.32 \includegraphics[angle=270]{euler-angles.svg}
?
! Emergency stop.
Does anyone have any experience with this?