Hallo Latex-Freunde,
Meine Umgebung
Windows 10, Miktex, TexStudio, Meine Tex-Studio-Konfiguration befindet sich als Scrrenshot im Anhang dieser Posts.
Mein Minimalbeispiel
Ich versuche ein Cisco-Icon aus dem relativen Verzeichnispfad iconseps/ einzubinden
\documentclass{scrartcl}
\usepackage[utf8]{inputenc}
%\usepackage{helvet}
\setlength{\parindent}{0em}
%Seitenränder
\usepackage{tikz}
\usepackage[a4paper, left=1cm, right=2cm, top=3cm,bottom=1cm]{geometry}
\begin{document}
\begin{tikzpicture}
\node(Server1) at(0,0) {\includegraphics{iconseps/workstation}};
\end{tikzpicture}
\end{document}
Mein Problem
Das EPS-Bild iconseps/workstation.eps kann nicht in pdf konvertiert werden.
Bekomme folgende Meldung:
Entschuldigung, aber epstopdf schlug fehl. Die Log-Datei enthält hoffentlich alle Informationen, um MiKTeX wieder in Gang zu bringen. ...MiKTeX\miktex\log\epstopdf.log
In der Log-Datei steht Folgendes:
2021-02-24 11:35:07,663+0100 INFO epstopdf - this process (16788) started by 'cmd' with command line: epstopdf --outfile=iconseps/hub-eps-converted-to.pdf iconseps/hub.eps
2021-02-24 13:20:45,586+0100 INFO epstopdf - this process (9128) started by 'cmd' with command line: epstopdf --outfile=iconseps/workstation-eps-converted-to.pdf iconseps/workstation.eps
2021-02-24 13:20:45,763+0100 FATAL epstopdf - The input file does not exist.
2021-02-24 13:20:45,763+0100 FATAL epstopdf - The input file does not exist.
2021-02-24 13:20:45,763+0100 FATAL epstopdf - Info:
2021-02-24 13:20:45,763+0100 FATAL epstopdf - Source:
2021-02-24 13:20:45,763+0100 FATAL epstopdf - Line: 0
Zusätzlicher Hinweis
Das Minimalbeispiel wird auf meinem anderen Rechner, der identische Einstellungen hat, fehlerfrei kompiliert.

