I am trying to include a MATLAB UI table (which I have previously saved as an .eps figure and put it into the same folder as my .tex file) into a LaTeX document, using:
\begin{figure}
\centering
\includegraphics{Table_TEST1} %{Figure name without .eps extension}
\caption{Caption1}
\label{fig:Test1Table}
\end{figure}
However, only a part of the figure appears, one quarter of the figure is chopped off. I tried to use
\includegraphics[scale=.5]{Table_TEST1}
instead, the figure is rescaled but one part of the figure is still missing. Any idea on how to solve this problem?
When I open the eps figure using an eps viewer, it says that the dimensions are:
width:470, height:293.
I don't know if this fact is playing a role in the problem.

problem-sample.epsto test ? Did you test withother.epsfigure ? are you using TeXlive(eps to pdf conversion automagic) or MiKTeX(\usepackage{epstopdf}) ? – texenthusiast Mar 15 '13 at 20:55latex-->dvi-->ps2pdfis somewhat an old way these days unless you need it forps specialspstricksetc.pdflatexhas become the default engine for many people and editors including TeXworks etc. your figure in table example is shown via writelatex. Hope this is fine. – texenthusiast Mar 15 '13 at 22:51