包 pdftex.def 错误 file-pics.pdf 未找到

包 pdftex.def 错误 file-pics.pdf 未找到

我在用着化学编号. Windows 更新后 EPS 到 PDF 的转换失败:

! Package pdftex.def Error: File `file-pics.pdf' not found.See the pdftex.def package documentation for explanation.Type H <return> for immediate help.... \includeschemes{pictures/pic1.eps}

我已经重新安装了 MikTeX 和 TeXmaker,并更新了 MikTeX 的软件包。

我为我举的过大例子道歉。我把它最小化了。

编辑

\documentclass[•]{article}
\usepackage{graphicx}
\usepackage[runs=2,crop=off]{auto-pst-pdf} 
  %eps mit pdflatex
%
\begin{document}
%
\includegraphics{5-FU.eps}
%
%
\end{document}

以下是日志:

 ------ LaTeX Warning: File `Latex_beispiel-pics.pdf' not found on input line 10.


! Package pdftex.def Error: File `Latex_beispiel-pics.pdf' not found.

See the pdftex.def package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              

l.10 \includegraphics{5-FU.eps}

Using draft setting for this image.
Try typing  <return>  to proceed.
If that doesn't work, type  X <return>  to quit.


Package pst-pdf Warning: File `Latex_beispiel-pics.pdf' not found.
(pst-pdf)                Use the following commands to create it:
(pst-pdf)                ---------------------------------------------------- 
(pst-pdf)                latex Latex_beispiel.tex
(pst-pdf)                dvips -o Latex_beispiel-pics.ps Latex_beispiel.dvi
(pst-pdf)                ps2pdf Latex_beispiel-pics.ps
(pst-pdf)                ---------------------------------------------- .

当我使用时,\usepackge{epstopdf}它可以工作。没有它就不行。我甚至尝试按照它在 中说的方式编译它.logLatex->dvips->ps2pdf它仍然不起作用。我还发现了另一件奇怪的事情。当我file-pics.pdf从它仍然工作时复制时,它会删除.pdf带有图片的并显示错误。我再也不明白了。

答案1

LaTeX Warning: File `*YourFilename*-pics.pdf' not found on input line ##

最有可能是通过 --shell-escape 到 perl 或 ghostscript 的 auto-pst-pdf 调用失败

默认情况下,Windows 或 Mac 版 Tex Live 可能包含这些实用程序的最小集。
但它们通常不会与 MiKTeX 一起安装。

对于潜在的测试和解决方案,请参阅

https://tex.stackexchange.com/a/473106/170109

相关内容