利用beamer做幻灯片时无法插入EPS图片。
可以利用epstopdf宏包,在命令行下利用pdflatex带"-shell-escape"参数编译。
先插入epstopdf宏包:
\usepackage{graphicx}
\usepackage{epstopdf}
然后在需要EPS图片的地方:
\includegraphics{pic.eps}
编译必须在命令行下完成:
pdflatex -shell-escape filename.tex (文件名中不要有空格等特殊符号,大小写一致)
为了生成索引,此命令需要执行两次,也就是进行两次编译。
阅读(5127) | 评论(0) | 转发(0) |