我正在尝试在乳胶中包含一个 pdf 图形。我以简单的方式使用matplotlib在python中创建了这个图
fig=plt.figure()
ax= fig.add_subplot(111)
plt.plot(random(100))
plt.savefig('figure.pdf',dpi=300,bbox_inches='tight')
但是,当编译乳胶文档时,我收到以下错误:
! LaTeX Error: Cannot determine size of graphic in figures/figure.pdf (no B
oundingBox).
问题是matplotlib如何建立边界框,但我就是找不到解决这个问题的方法。谁能帮我一把?
谢谢!