结合 graphicspath 和 import

结合 graphicspath 和 import

我想使用该import包通过命令指定我的图像位置graphicspath。因此,

\begin{figure}[H]
 \begin{center}
 \def\svgwidth{\textwidth} 
 \import{/path/to/figure/}{image.pdf_tex} 
 \end{center}  
\end{figure}

我想用它(如果可能的话)类似

\graphicspath{{/path/to/figure/}}

\begin{figure}[H]
 \begin{center}
 \def\svgwidth{\textwidth} 
 \import{}{image.pdf_tex} 
 \end{center}  
\end{figure}

如何才能做到这一点?

相关内容