我正在尝试在几个包含多个图形的 tex 文件中编写一个单独的文档,我的文件的组织如下:
chapter1
|
-->chapter1.tex
-->pictures
|
-->picture1.pdf_tex
chapter2
|
-->chapter2.tex
-->pictures
|
-->picture2.pdf_tex
在每一章中,我都必须插入使用 inkspace 工具转换为 pdf_tex 的 svg 图像。因此,我尝试了在以下位置找到的此方法:如何在 LATEX 中包含 SVG 图像
In preambule :
\graphicspath{{Chapitre1/pictures/}}
In Chapter1.tex :
\begin{figure}[h]
\centering
\def\svgwidth{\columnwidth}
\scalebox{0.8}{\input{Chapter1/pictures/picture1.pdf_tex}}
\end{figure}
但它不起作用,你能帮我吗?