Beamer no convierte .eps a .pdf

Beamer no convierte .eps a .pdf

En el proyector MWE adjunto, no puedo cambiar el archivo Xlogo.eps a otro archivo Xlogo1.eps, no tengo idea de por qué. La compilación se realiza sin errores, pero el pdf aún muestra el archivo .eps antiguo. Entonces, el código parece funcionar para el archivo .eps antiguo, pero no para el nuevo.

Todos los archivos (.eps, .tex, .log, .sty) se almacenan en la misma carpeta. Utilizo Texmaker 5.0.2 en OSX 10.13.2.

Lo que he probado: - Actualice MacTex y Texmaker - Pruebe diferentes compiladores - Pruebe diferentes editores (TexShop, WinEdt) - Reemplace el archivo .eps antiguo con el mismo nombre - Coloque los archivos .sty en /Users/User/Library/texmf/latex /local/ - Actualiza la base de datos de nombres de archivos con sudo -H mktexlsr

MWE del archivo beamerthemeX.sty:

\DeclareOptionBeamer{compress}{\beamer@compresstrue}
\ProcessOptionsBeamer
\def\X@logo{Xlogo.eps}
\mode<presentation>
\useoutertheme{X}
\useinnertheme{X}
\mode
<all>

MWE del archivo beamerouterthemeX.sty:

\mode<presentation>
\defbeamertemplate*{headline}{X theme}
{
\hspace{0.025\textwidth}\raisebox{0cm}{\parbox{0.95\textwidth}{%
\color{esmtblack}{%
\footnotesize{\raisebox{0.5cm}{\insertsection\ $\mid$\ \insertsubsection} \           
\leavevmode\leaders\hrule height0pt depth-2.8pt\hfill\kern0pt\   
\color{esmtblack} \includegraphics[width=2cm]{\X@logo}}%
}}}%
}%
\setbeamersize{text margin left=1em,text margin right=1em}
\mode
<all>

MWE del archivo .tex:

\documentclass[11pt]{beamer}
\mode<presentation>
{
\usetheme{X}
\setbeamercovered{transparent}
}
\usepackage{graphicx}
\usepackage{amsmath,amsthm,amssymb}
\usepackage{geometry}
\usepackage{multicol}
\usepackage{mathrsfs}
\usepackage[german]{babel}
\usepackage{fontspec}
\setsansfont[Ligatures=TeX]{Arial Narrow}
\setbeamertemplate{authorname}{A}
\setbeamertemplate{authortitle}{B}
\setbeamertemplate{authorinstitute}{C}
\setbeamertemplate{authoremail}{D}
\setbeamertemplate{authorphone}{E}
\setbeamertemplate{authorfax}{F}
\setbeamertemplate{authorwebsite}{G}
\title[X]{A}
\subtitle{B}
\author{%
{\bf \usebeamertemplate{authorname}} \\
{\usebeamertemplate{authortitle}}\\
{\usebeamertemplate{authorinstitute}}\\
{\usebeamertemplate{authoremail}}\\
}
\date{20 Feb 2018}
\begin{document}
\newgeometry{top=0cm,left=0.5cm,right=0.5cm,bottom=0cm}
{
\usebackgroundtemplate%
\frame[plain]{
{\parbox{1\textwidth}\footnotesize{\raisebox{0.5cm}
\ \leavevmode\leaders\hrule height0pt depth-2.8pt\hfill\kern0pt\   
\color{black} \includegraphics[width=3cm]{Xlogo.eps}}%
}%
\titlepage}
}
\restoregeometry
\begin{frame}
\end{frame}

Respuesta1

No es una respuesta (no puedo reproducir el problema con el logo), pero señalar algunos otros problemas en el código.

% !TeX TS-program = xelatex
\documentclass[11pt]{beamer}

\colorlet{esmtblack}{black}% Missing colour!!!!!!!!!!!!!!!!!!!!!!!!!!!

\makeatletter
\def\X@logo{dice.eps}
\defbeamertemplate*{headline}{X theme}{%
    \hspace{0.025\textwidth}%
    \raisebox{0cm}{%
        \parbox{0.95\textwidth}{%
            \color{esmtblack}% Does not take arguments !!!!!!!!!!!!!!!!!!!!!
            \footnotesize% Does not take arguments !!!!!!!!!!!!!!!!!!!!!!!!!
            \raisebox{0.5cm}{%
                \insertsection\ $\mid$\ \insertsubsection
            } \          
            \leavevmode\leaders\hrule height0pt depth-2.8pt\hfill\kern0pt\ 
            \color{esmtblack}%
            \includegraphics[width=2cm]{\X@logo}%
        }%
    }%
}%
\makeatother

%\usepackage{graphicx} Unnecessary with beamer !!!!!!!!!!!!!!!!!!!!!!!

%\usepackage{multicol} Beamer has its own column mechanism !!!!!!!!!!!

\begin{document}

%\usebackgroundtemplate% I have no idea what this should do
\begin{frame}[plain]
    \parbox{1\textwidth}{% { was missing !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
        \footnotesize% Does not take arguments !!!!!!!!!!!!!!!!!!!!!!!!!!!
        \raisebox{0.5cm}{% { was missing !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
            \ \leavevmode\leaders\hrule height0pt depth-2.8pt\hfill\kern0pt\ 
            \color{black} 
            \includegraphics[width=3cm]{dice.eps}
        }%
    }%
    \titlepage
\end{frame}

\end{document} % Missing !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

información relacionada