无法使用 Inkscape2Tikz 扩展从 Windows 上的 Inkscape 1.0.1 将 SVG 图像导出到 Tikz 文件

无法使用 Inkscape2Tikz 扩展从 Windows 上的 Inkscape 1.0.1 将 SVG 图像导出到 Tikz 文件

我正在尝试将 Inkscape 中的图像导出到 .tex 文件中,文件扩展名为 Inkscape2Tikz,该文件是从 GitHub 下载的,但不起作用。我设法在 Inkscape 中包含了扩展名,但当我尝试使用它时会出现以下错误,并且不会保存 .tex 文件:

tikz_export.py:645: DeprecationWarning: Effect.OptionParser or `optparse` has been deprecated and replaced with `argparser`.You must change `self.OptionParser.add_option` to `self.arg_parser.add_argument`; the arguments are similar.
  parser = self.OptionParser
Traceback (most recent call last):
  File "tikz_export.py", line 1478, in <module>
    main_inkscape()
  File "tikz_export.py", line 1461, in main_inkscape
    effect = TikZPathExporter(inkscape_mode=True)
  File "tikz_export.py", line 629, in __init__
    self._set_up_options()
  File "tikz_export.py", line 646, in _set_up_options
    parser.set_defaults(codeoutput='standalone', crop=False, clipboard=False,
AttributeError: 'TikZPathExporter' object has no attribute 'set_defaults'

我已经看到有人建议在 Inkscape 中使用 PDF+LaTex 选项,但由于最终文件的大小不能超过非常低的限制,因此我需要整个 Tikz tex 文件。我发现其他人也在抱怨这个问题,但仍然没有答案或有效的解决方案。非常感谢您的帮助!!我将不胜感激。

相关内容