从 Inkscape 插入 .pdf_tex 文件时出现问题

从 Inkscape 插入 .pdf_tex 文件时出现问题

我正在尝试从 Inkscape 插入图像。我将其保存为 pdf,并选中 PDF + Latex 选项。
在我的 Latex 文件中,我编写了以下代码:

\begin{figure}  
  \centering  
  \def\svgwidth{\columnwidth}  
  \input{topo4serv.pdf_tex}  
\end{figure}

但是当我尝试使用 pdflatex 进行编译时,它给出了以下错误消息:

ERROR: Undefined control sequence.  

--- TeX said ---  
<argument> \includegraphics  
                            [width=\unitlength ]{topo4serv.pdf}
l.52 ...raphics[width=\unitlength]{topo4serv.pdf}}
                                                   %

在输出的 pdf 文件中,有 svg 文件的文本,但没有形状...
如果有人能回答,我将不胜感激。

答案1

\includegraphics给出错误,因为它没有定义,这意味着你需要\usepackage{graphicx}在文档的序言中

相关内容