I'm using TeXstudio 2.11.2 to compile my document.
The document class i'm using is.
\documentclass[a4paper,12pt,twoside,hidelinks,openright]{report}
I want to include an .eps image to my document. This image has been wrongly converted from this .svg file (ufile.io/r4ift), using this online tool converter (https://cloudconvert.com/svg-to-eps).
\begin{figure}[h]
\begin{center}
\includegraphics[scale=1]{my_eps_image}
\end{center}
\end{figure}
When I visualize the image, the wrongly converted .svg is shown as @JosephWright has detected. This is then not a Latex error.
How can I fix it and convert correctly the .svg image? Or, is it simpler to include directly the initial .svg image.
Edit with a MWE:
\documentclass[a4paper,12pt,twoside,hidelinks,openright]{report}
\usepackage[spanish]{babel}
\usepackage{graphicx}
\usepackage{graphics}
\usepackage{amsmath,amsthm,amssymb,mathrsfs}
\begin{document}
\begin{figure}[h]
\begin{center}
\includegraphics[scale=1]{my_eps_image}
\end{center}
\end{figure}
\end{document}

latexorpdflatex)? – Joseph Wright Jul 07 '17 at 12:29graphicxand thedocumentenvironment, we are going to need a MWE. We'll probably also need some info from your log: with a short example that should be short enough to edit in. – Joseph Wright Jul 07 '17 at 12:38.svgfile (https://ufile.io/r4ift), so it seems the problem is in this step. Sorry again. – Santiago Gil Jul 07 '17 at 12:59