I have an article:
\documentclass[a4paper,12pt,oneside]{article}
Now in a section I have a figure:
\begin{figure}
\centering
\includegraphics[scale=0.65]{images/rlexample.png}
\caption{---}
\label{rlexample}
\end{figure}
This figure is pretty big, so I would like to show them in a single page without the classic top margin. Is there anyway to specify a negative top margin just for showing this figure?
Solution
Thanks to Prof. @egreg the solution is (with pagenumber hiding)
\begin{figure}
\centering
\vspace*{-3cm}
\includegraphics[scale=0.6]{images/rlexample.png}
\caption{---}
\label{rlexample}
\end{figure}
\thispagestyle{empty}
\vspace*{-3cm}just after\centering(adjust to suit). – egreg Nov 22 '12 at 17:00\maketitle \thispagestyle{empty} \pagestyle{empty}will do the trick. Please post an answer I will accept it – dynamic Nov 22 '12 at 17:26