Apr
16

How to include PNG file in LaTeX

在LaTeX中,如果直接写:
\usepackage{graphicx}
\begin{document}
\begin{figure}
\includegraphics{test.png}
\end{figure}
\end{document}
这样就会出问题 一般是:

! LaTex Error: File ‘test.bb’ not found.
而用PdfLaTeX就没有问题 为什么呢?今天终于搞清楚了。因为png,jpg不同于eps,点阵图形里面没有包涵boundary信息,所以LaTeX没法确定边界于是就出错了。解决的方法是:
1.

\usepackage[pdftex]{graphicx}


2. 先执行一下ebb命令定好bb值

是以为记

阅读(160 次)

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • bodytext
  • del.icio.us
  • Slashdot

评论暂缺

Make A Comment

还没有任何评论。

Comments RSS Feed    TrackBack URL

留下评论