在 Windows 10 Texworks 中包含 .eps 图片

在 Windows 10 Texworks 中包含 .eps 图片

我在 Windows 10 上使用 Texworks 时遇到了问题。

我想将图表作为 .eps 文件而不是 .png 文件包含。现在,当我尝试将文档编译为 PDF 时,我收到错误消息:

"____________________

! Package pdftex.def Error: File `PICTURES/kdiss_molCN-eps-converted-to.pdf' not found: using draft setting.

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

“_____________________”

我尝试编译的文件是一个最小化的示例:


\documentclass[a4paper,12pt]{scrreprt}


\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}

%% REQUIRED PACKAGES
\usepackage{amsfonts,amsmath,amssymb} % math stuff
\usepackage{booktabs} % better layout for tables
\usepackage{color} % enable use of colors
\usepackage{fancyhdr} % definition of own headers/footers
\usepackage{graphicx} % for including pictures
\usepackage{units} % for giving quantities the right surrounding
\usepackage{xspace} % correct spacing behind DuMuX command

%% OPTIONAL PACKAGES
\usepackage{array} % needed for the new column type
\usepackage{lipsum} % dummy text with \lipsum[1]
\usepackage{subcaption} % multiple figures in one row
\usepackage{rotating} % rotating of figures
\usepackage{todonotes} % for colorful todo notes
\usepackage{chngpage}
\usepackage{epstopdf}
\usepackage{epsfig}
\usepackage{float}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{graphicx}
\usetikzlibrary{arrows}
\usepackage{capt-of}
\usepackage{caption}
\usepackage{mhchem}
\usepackage{rotating}
\usepackage[bookmarks=true,bookmarksopen=true,bookmarksopenlevel=2]{hyperref} % enable links


\begin{document}
Hi

\begin{figure}[ht]
    \centering
  \includegraphics[width=0.8\textwidth]{PICTURES/kdiss_molCN.eps}
    \caption[$k_{diss}$:Molare Konzentration Cyanid, Oberfläche] {Molare Konzentration von Cyanid an der Oberfläche für verschiedene Werte von $k_{\mathrm{diss}}$}
    \label{2}
\end{figure}

\end{document}

有解决办法吗?因为在我的 OpenSuse 系统上它可以工作,所以问题一定出在 Windows 10 上。

相关内容