1、LaTex
推荐使用eps矢量格式。(该格式直接放在word中不会显示,但是通过插入word后双击打开查看
2、Word
推荐使用svg矢量格式。该格式可以直接插入word中。
3、plt保存代码
import matplotlib.pyplot as plt
# 绘制图形
x = [1, 2, 3, 4, 5]
y1 = [1, 4, 9, 16, 25]
y2 = [1, 2, 3, 4, 5]
plt.plot(x, y1, label="Line 1")
plt.plot(x, y2, label="Line 2")
# 添加图例、设置背景透明
plt.legend(framealpha=0)
# 设置图形属性
plt.title("Example Plot")
plt.xlabel("X-axis")
plt.ylabel("Y-axis")
# 保存为EPS格式。transparent设置背景透明
plt.savefig("1.png", format="png",dpi=600,bbox_inches='tight',pad_inches=0,transparent=True)
# 保存为SVG格式
plt.savefig("2.svg", format="svg",dpi=600,bbox_inches='tight',pad_inches=0,transparent=True)
# 显示图形
plt.show()