包含从 svg 格式转换的 eps 文件时,查看器不支持此问题

包含从 svg 格式转换的 eps 文件时,查看器不支持此问题

我正在使用 TeXstudio 2.11.2 来编译我的文档。

我正在使用的文档类是。

\documentclass[a4paper,12pt,twoside,hidelinks,openright]{report}

我想将.eps图像添加到我的文档中。此图像已从此.svg文件错误地转换而来(ufile.io/r4ift),使用此在线工具转换器(https://cloudconvert.com/svg-to-eps)。

\begin{figure}[h]
    \begin{center}
        \includegraphics[scale=1]{my_eps_image}
    \end{center}
\end{figure}

当我可视化图像时,错误转换.svg显示为@JosephWright 检测到的。这不是 Latex 错误。

错误

我该如何修复它并正确转换图像.svg?或者,直接包含初始图像是否更简单.svg


使用 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}

相关内容