答案1
该svg
包使用 Inkscape 将给定的 SVG 文件转换为 PDF,然后输入生成的文件。默认情况下,使用标志调用 Inkscape 导出--export-latex
,以便通过 LaTeX 处理 SVG 文件中的任何文本。由于您的意图是保留文本原样,而不是通过 LaTeX 处理它,因此您应该传递inkscapelatex=false
给\includesvg
。
这应该有效:
\documentclass{article}
\usepackage{svg}
\begin{document}
\begin{figure}
\includesvg[width=\linewidth,inkscapelatex=false]{./flow-matic-4.svg}
\end{figure}
\end{document}