1

我正在尝试在乳胶中包含一个 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如何建立边界框,但我就是找不到解决这个问题的方法。谁能帮我一把?

谢谢!

4

1 回答 1

3

问题不在于 matplotlib bbox,而在于乳胶编译的方式。在这种情况下,需要 pdflatex 来编译文档,而不是 latex。

于 2013-02-24T15:34:51.660 回答