我正在使用 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}