将 .pdf_tex 从 Inkscape 导出到 LaTex

将 .pdf_tex 从 Inkscape 导出到 LaTex
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}
  \centering
  \def\svgwidth{\columnwidth}
  \input{draft.pdf_tex}
  \caption{Caption}
  \label{fig:my_label}
\end{figure}
\end{document}

该实现适用于 pdf,但不适用于 .pdf_tex。有人可以帮忙吗?:)

答案1

错误

Color is used for the text in Inkscape, 
but the package 'color.sty ' is not loaded

可以通过添加来修复

\usepackage{color} 

相关内容