我正在使用Inkscape合并两个数字。使用matplotlib创建的其中一个图形上面写有数学文本。据我所知,文本是使用matplotlib的latex来呈现的。当我在Inkscape中导入此图时,文本中的小数点将由小三角形自动替换。可以做些什么?请看下面的图片。提前致谢。
编辑:这是一个生成类似绘图的示例,当在inkscape中导入时,会生成错误的字体。
import matplotlib.pyplot as plt
plt.plot([1, 2, 3], [1, 4, 9])
plt.annotate(r'$\alpha = 2.4$', xy = (0.1, 0.9), xycoords = 'axes fraction')
plt.legend()
plt.savefig('test.pdf', bbox_inches = 'tight')