包含從 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 已檢測到。那麼這不是乳膠錯誤。

錯誤

我該如何修復它並正確轉換圖像.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}

相關內容