如何使用 pdfLaTeX 包含 EPS 图形?

如何使用 pdfLaTeX 包含 EPS 图形?

我已经阅读了本网站上的许多相关问题,但我仍然无法让它工作。我按照以下说明操作:这个答案:

\documentclass[journal, a4paper]{IEEEtran}

\usepackage{graphicx}
\usepackage{epstopdf}
\DeclareGraphicsExtensions{.eps}

\begin{document}

\begin{figure}[!t]
\includegraphics{overnondomination}
\end{figure}

\end{document}

输出为:

*****
*****     PDFLaTeX output: 
*****     cd "/home/martin/MyArticles/Minimum_example"
*****     pdflatex -shell-escape -interaction=nonstopmode example.tex
*****
This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012/Debian)
 \write18 enabled.
...
! Package pdftex.def Error: File `overnondomination-eps-converted-to.pdf' not found.

请问您能帮我找出我做错什么了吗?

编辑:

按照提示,问题出现在出现这个错误信息之前。原来是我没有安装epstopdf

跑步

sudo apt-get install texlive-font-utils

解决了问题。

答案1

仔细检查输出后,我发现该文件overnondomination-eps-converted-to.pdf从未被创建过。

这是因为我没有安装epstopdf

跑步

sudo apt-get install texlive-font-utils

解决了问题。

相关内容