使用 svg2tikz 时出错:AttributeError:'TikZPathExporter' 对象没有属性'svg'?

使用 svg2tikz 时出错:AttributeError:'TikZPathExporter' 对象没有属性'svg'?

我正在尝试将 .svg 文件转换为 LaTeX 文档。我克隆了github 仓库对于 avg2tikz 并按照安装说明操作。在无法将其与 inkscape 配合使用后,我尝试在 Windows 上通过命令行使用它。问题是我需要的命令是

 python tikz_export.py Tux.svg -o tux.tex

在正确的目录中将其输入到 cmd 后,出现此错误:

>python tikz_export.py myfile.svg -o myfile.tex

Traceback (most recent call last):
File "filepath", line 1482, in <module>
main_inkscape()
File "filepath", line 1465, in main_inkscape
effect = TikZPathExporter(inkscape_mode=True)
File "filepath", 
line 630, in __init__
self.svg.unittouu = inkex.unittouu
AttributeError: 'TikZPathExporter' object has no attribute 'svg'

我是否可能需要更改inkscape_mode=True为,inkscape_mode=False因为我没有将它与 inkscape 一起使用。非常感谢您的帮助。

相关内容