I was using latex for a while on Linux and I was using SVG. I remember it was a very hard time to fix the errors specially the one saying
File "./somesvg" not found
Now, installed TeXStudio and latest version of InkScape, MikTex and required packages.
Making a simple test tex:
\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{listings}
\usepackage{color}
\usepackage{graphicx}
\graphicspath{ {images/} } %%%% file path here
\usepackage{svg}
\usepackage[margin=0.5in]{geometry}
\usepackage{float}
\usepackage{subfig}
\begin{document}
\begin{figure}[H]
\centering
\includesvg[width=140mm]{samplecar} %%%%%%%%%% error here
\caption{aaaaaaa}
\label{fig:aaaaaaaa}
\end{figure}
\end{document}
Creating a folder called images and putting a file inside it called samplecar.svg.
I am getting error:
File `./samplecar' not found. \includesvg[width=140mm]{samplecar}
Even copying samplecar.svg in the same path with .tex file does not help.
Where am I making mistake?
Please avoid linking to this question as it does not help me.
pdftops.) – cfr Apr 30 '15 at 02:44pdftopshowever in the download link, there is no installation. Just a few exe files. I followed the instructions of that Tex SE answers and no difference in the result. – zekri Apr 30 '15 at 03:05--shell-escapehas been added. – Werner Apr 30 '15 at 06:17