I'm relatively new to LaTeX and trying to come to grips with it. I understand I can resize a figure to fit the column width or text height quite easily:
\includegraphics[width=1\columnwidth]...
or
\includegraphics[height=.1\textheight]...
I was wondering if there is an easy way to get a figure and its caption to fit in a page.
\textheight, there won't be enough space for the caption. nonetheless, if you put it into a float --\begin{figure][p]-- it will stay together, but you will get a complaint that it's too large. you might try to apply a scaling factor, e.g.[scale=.8], instead of the height or width to get it to an acceptable size. – barbara beeton Dec 21 '12 at 16:09