I have a heavy file with EPS and PNG figures. The below script is an example only for my problem. Here fig2.eps is actually PNG (cp fig2.png fig2.eps) because of that I use the bounding box. I have ran the script in Linux using the commands
Code: Select all
latex file.tex
dvipdf file.dvi file.pdf
Code: Select all
\begin{figure}[H]
\begin{minipage}{0.54\linewidth}
\centering
\includegraphics[scale=0.40,angle=0]{fig1.eps}
\end{minipage}
\hspace{-30 pt}
\begin{minipage}{0.54\linewidth}
\centering
\includegraphics[bb=0 0 640 460,scale=0.50,angle=0]{fig2.eps}
\end{minipage}
\end{figure}