如何使用 inkscape 导入 LaTeX 中的矢量图形

如何使用 inkscape 导入 LaTeX 中的矢量图形

我想在我的 LaTeX 文档中包含一个漂亮的矢量图形。显然,我这样做是因为我不想在放大时降低图形的质量。有没有简单的方法可以做到这一点?

这是我的想法:我在 Inkscape 中创建了一个图形。我已将该图形另存为.svg。我还将该图形另存为.pdf_tex(将图形另存为时,此文件由 Inkscape 自动生成.pdf)。

现在我试图将该.pdf_tex图包含在我的文档中:

\begin{figure}[h]
    \centering
    \def\svgwidth{\linewidth}
    \input{figures/network.pdf_tex}
    \caption{Graphical Representation of Scenario.}
    \label{Scenario}
\end{figure}

我正在使用自定义模板。在选项中,我添加了以下行,因为我收到了错误消息Package pdftex.def Error: File `network.pdf' not found. ...cs[width=\unitlength,page=1]{network.pdf}}

\graphicspath{{./figures}}

对了,我忘了说了,还是会出现同样的错误信息。为什么会这样?

相关内容