I have a large image which covers the whole page. I have used the fltpage package to deal with the caption. It all works fine, the figure is on the first page and the caption is on the next page and in the correct format etc.
However it is at the BOTTOM of the page - how do I get it to the TOP? Searched for ages now but can't find the answer anywhere

I use Texmaker 4.1.1 under Windows 7.
I cropped my lengthy code to this, this should work (altough it does refer to my graphics path):
Code: Select all
\documentclass[12pt,a4paper,oneside]{scrreprt}
\usepackage[pdftex]{graphicx}
\usepackage[labelfont=bf]{caption}
\usepackage[leftFloats,CaptionAfterwards]{fltpage}
\captionsetup[FPfigure]{format=plain, font=small, labelfont=bf}
%set directory for graphics
\graphicspath{{Allfigures/}}
\begin{document}
\begin{FPfigure}
\includegraphics[scale=1.1]{test.PNG}
\caption[Bin number]{\textbf{Test}.Add some text here}
\end{FPfigure}
\end{document}