The following displays the .png figure in the pdf but not the .eps figure:
\documentclass[12pt]{article}
\usepackage{graphicx}
\usepackage{epstopdf}
\begin{document}
\begin{figure}[htb]
\includegraphics[width=5.0in]{mcs.eps}
\end{figure}
\begin{figure}[htb]
\includegraphics[width=5.0in]{Broncos.png}
\end{figure}
\end{document}
Space is reserved in the pdf for the .eps figure even though it is not displayed. I am using MikTeX 2.9 and TeXMaker 5.0.4. Any thoughts would be appreciated.
.pngis natively supported by the PDF format, whereas.epsis not, so it requires additional packages to convert it to a supported format (PDF). Also, off-topic: you can select the code and click the{}button to format as a code block in your post. – Phelype Oleinik Feb 04 '20 at 18:35.epsto.pngis done automatically bygraphicxyou don't need any other packages to do that. Your code works fine for me... – Phelype Oleinik Feb 04 '20 at 18:39pdftex' andluatex' are not supported" and it does not compile. – Craig Feb 04 '20 at 18:44