I am having some difficulty getting figures to display when using the Radiation Protection Dosimetry (RPD) template (Link to zip).
I understand that the template is designed to work with *.eps files.
The following snippet is provided in the documentation describing how to include figures (pretty standard):
\begin{figure}
\centerline{\includegraphics{fig01.eps}}
\caption{caption\label{fig:01}}
\end{figure}
The code compiles without errors and a PDF is generated. LaTeX provides the space for the figure and even places the caption at the bottom of the figure. The figure itself, however, is not displayed.
The resulting PDF looks like this:
The template might be supplied with the draft option (not sure), and if so might affect how figures are displayed (Turning off and on images in figures). Not sure if this is actually the case and not sure how to switch to final mode.
I have managed to use the same eps file in other documentclasses and it was rendered successfully: So as far as I understand, both my LaTeX installation as well as the figure I want to include are fine.
It would also be nice if I could get the template to work with PDFs.
Thanks.
Edit: Miniminal document and log output following removal of graphics.cfg
MWE for document.tex:
\documentclass{Rpd}
\usepackage{epstopdf}
\RequirePackage{fix-cm}
\usepackage[nolist,nohyperlinks]{acronym}
\usepackage{siunitx}
\usepackage{graphicx}
\begin{document}
\def\copyrightyear{2004}%
\title[Test]{Test}
\author[]{}
\address{}
\date{Draft}
\maketitle
\begin{figure}%figure1
\centerline{\includegraphics{test}}
\caption{Caption.}\label{fig:01}
\end{figure}
\end{document}

\centerlinein latex really, but that's not likely to be the problem, try without the extension:\centering\includegraphics{fig01}– David Carlisle Mar 23 '17 at 07:54draft-mode. Indraftthe figures normally get replaced by placeholders (showing the filename and relative path). – Skillmon Mar 23 '17 at 08:46graphics.cfg– Skillmon Mar 23 '17 at 09:05Will have a look at using my own graphicx package. I'll report back :)
– SO_tourist Mar 23 '17 at 09:09