在 Maple 2022 中生成基本图时:
Expr := x;
with(plots):
inequal(Expr < y, x = -3 .. 3, y = -3 .. 3);
我得到了预期的输出:
但是,当将图导出为 .svg 文件并将其添加到 Latex 文档时,减号现在呈现为“K”:
是什么原因造成的?如何解决?svg 在 Chrome/Edge 中看起来不错。Overleaf 中的 MWE:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{svg, graphicx, float}
\begin{document}
\begin{figure}[H]
\centering
\includesvg{test.svg}
\caption{Caption}
\label{fig:my_label}
\end{figure}
\end{document}
编辑:测试.svg
在 Edge/inkscpae 中打开文件: