I am new to LaTeX. I am trying to include and graph in .eps format in my LaTeX document. I shrink the image to half its size, but for some reason, LaTeX still putting it on its own page, with a small graph in the middle and a lot of white space. I would like this graph to be placed at the top of the page with text underneath. Any help would be greatly appreciated.
My packages are:
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{mitpress}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{float}
\usepackage{booktabs}
\usepackage{rotating}
\usepackage[left=63.2363pt,right=63.2363pt,top=90.3375pt,bottom=90.3375pt]{geometry}
And the code for my figure is:
\begin{figure}[ht]
\centering
\includegraphics[trim = 0 0 0 0,clip=true,scale = 0.5]{graphs/fig_hazards_comb}
%\caption{This is the caption}
\end{figure}
\clearpage
trimoption (or take it out altogether) do things change? Where did this eps file come from? – Matthew Leingang Apr 01 '11 at 17:58\clearpagethat appears at the end of my figure environment, and everything works fine. I though that I needed to use\clearpageto place all of the figures that had been inputted up to that point. But, I guess it also causes a page break. Sorry for the confusion. New latex user. – Apr 01 '11 at 18:13