Matplotlib、Inkscape、TeXStudio 工作流程 SVG 图形
当我在 matplotlib 中创建 SVG 图形时 import numpy as np import matplotlib.pyplot as plt import matplotlib new_rc_params = {'text.usetex': False, "svg.fonttype": 'none' } matplotlib.rcParams.update(new_rc_params) x = np.linspace(-1, 1, 100) y = x**2 plt.plot(x,y) plt.xlabel(r'x \$\rightarro...