I am a beginner in LaTeX and I want know if there is a way to have 2 images of different types in LaTeX:
\documentclass[a4paper,openright,12pt]{report}
\usepackage[spanish]{babel} % espanol
\usepackage[latin1]{inputenc} % acentos sin codigo
\usepackage{graphicx} % gráficos
\usepackage{subfigure} % subgráficos
\begin{document}
\begin{figure}[H]
\centering
\includegraphics[scale=1.8]{figura/pantalla1.eps}
\caption{IIIIIIIIIIIIIIIIIII. }
\label{fig:interfas}
\end{figure}
\begin{figure}[H]
\centering
\includegraphics[scale=1.8]{figura/pantalla1.pdf} %error also if .png error
\caption{IIIIIIIIIIIIIIIIII. }
\label{fig:interfas2}
\end{figure}
\end{document}
I have in all my documents .eps, and all looks excellent but
I need to put 2 images in .pdf or .png, and if I convert it 2 images and .eps looks so bad because they are screen shot of cell.
epstopdfas part of your document preamble and enable-shell-escapeso the images can be converted in the background. See EPS figures withpdflatexand/or useepspdfconversion. You will have to compile withpdflatex, regardless. – Werner Jun 21 '13 at 03:18