我正在尝试将 eps 图形添加到我的文档中,但在编译时出现此错误
Package pdftex.def Error: File `immagini/pwr_consumption_in_wnc-eps-converted
-to.pdf' not found.
See the pdftex.def package documentation for explanation.
Type H <return> for immediate help.
其中 pwr_consumption_in_wnc 是我的 eps 文件
答案1
据我所知,pdftex 默认不支持 .eps。但您可以尝试以下操作:
\usepackage{epstopdf}
\includegraphics{<name>}
pdflatex --shell-escape
这将生成您的 eps 的 pdf 版本,然后可供使用。
如果你不依赖pdflatex
你可以选择另一种方式:latex->dvi->ps->pdf