在 Latex 中插入 SVG 图像

在 Latex 中插入 SVG 图像

我需要在我的 latex 文件中包括一些 SVG 图形。SVG 文件是使用 Python 程序创建的,它们不是来自 Inkscape(我知道有很多关于 Inkscape - SVG 文件 - Latex 连接的问题,但这不是我的情况)。

我尝试做的概括如下:

\usepackage{svg}

\begin{figure}
\includesvg{image}
\end{figure}

-synctex=1 -interaction=nonstopmode --shell-escape %.tex我还尝试在部分中设置Configure Texmaker。这没有奏效,产生了

! LaTex Error: File './image' not found.

如何解决?

答案1

您需要使用 pdflatex --shell-escape main.tex => 进行编译http://comp-phys.net/2014/03/22/包括-矢量图形-in-latex-using-includesvg/

相关内容