Я пытаюсь преобразовать файл svg в файл pdf_tex в Texmaker с помощью Inkscape, используя следующую преамбулу и документ:
\documentclass[10pt]{article}% Package for chemical equation typesetting
\usepackage{siunitx} % Provides the \SI{}{} and \si{} command for typesetting SI units
\usepackage{graphicx} % Required for the inclusion of images
\usepackage{amsmath} % Required for some math elements
\usepackage{svg}
\setsvg{inkscape=inkscape -z -D}
\begin{document}
\begin{figure}
\centering
\includesvg[width=0.5\textwidth]{image}
\end{figure}
\end{document}
где «image» — это файл image.svg и запустите pdflatex:
pdflatex -synctex=1 -interaction=nonstopmode --shell-escape %.tex
Однако произошла следующая ошибка:
«inkscape» не является внутренней или внешней командой, исполняемой программой или пакетным файлом.
Я добавил c:/Program Files/Inkscape/inkscape.com в PATH, но это не работает.
решение1
У меня тоже была эта проблема. Я смог ее исправить, определив путь к inkscape.
\documentclass[10pt]{article}
\usepackage{svg}
\setsvg{inkscape={"C:/Program Files/Inkscape/inkscape.com"}}
\begin{document}
\begin{figure}\centering
\includesvg{cysteine}
\end{figure}
\end{document}