I need to include some SVG graphics in my latex file. The SVG files have been created with a Python program, they don't come from Inkscape (I know that there are a lot of questions answered about the connection Inkscape - SVG file - Latex, but this is not my case).
What I tried to do is, in summary:
\usepackage{svg}
\begin{figure}
\includesvg{image}
\end{figure}
and I also tried to set the -synctex=1 -interaction=nonstopmode --shell-escape %.tex in the Configure Texmaker section. This did not work out, producing
! LaTex Error: File './image' not found.
How to solve it?
svgpackage uses inkscape to convert your svg file to your desired output which is then inserted in your document. Inkscape is required to insert svg files into your latex document. So my question is "do you have inkscape installed?" – ArTourter Aug 29 '15 at 12:41