tags:

views:

55

answers:

4

One of the figures appear in the middle of a page (on its own) when the figure does not fit the other text. How to show it on top of the new page?

A: 

You can insert a pagebreak via \clearpage or \newpage, then use the t option on the figure environment:

...

\clearpage

\begin{figure}[t!]
    \centering
    \includegraphics[scale=.75]{graphic/...}
    \caption{}
    \label{fig:}    
\end{figure}

...
The MYYN
actually this is what I have already done. but that doesn't work.
never shown
+1  A: 

If there's nowhere for the figure to fit then it will go on a page by itself. See the FAQ answer on floats for more information on how to customise this behaviour.

Will Robertson
+1  A: 

If all else fails, just add \vspace*{3in} to the bottom of your figure below the \caption. Then by trial and error change the 3in dimension until you get the look you want. This is of course pure brute force, but sometimes that's a lot easier than trying to get LaTeX to do things the "right" way.

When in doubt, use brute force.

--- Ken Thompson

Norman Ramsey
Another brue force solution is using `float` package and `\begin{figure}[H]` command.
Crowley
A: 

I think I misunderstood your question. Are you asking "how do I get floats on pages by themselves to be at the top of the page, rather than vertically centred?"?.

If so, here's how to customise the float page. From source2e, glue is inserted at the top and bottom of the page, and between each float on the page. This inserted glue is given by the following parameters:

\setlength\@fptop{0\p@ \@plus 1fil} 
\setlength\@fpsep{8\p@ \@plus 2fil} 
\setlength\@fpbot{0\p@ \@plus 1fil}

Simply redefine these to get the output you like. For example, for top- and bottom- aligned floats: (untested)

\makeatletter
\setlength\@fptop{0pt} 
\setlength\@fpsep{8pt plus 1fil} 
\setlength\@fpbot{0pt}
\makeatother
Will Robertson