In answering my own question (http://www.latex-community.org/forum/vi ... =45&t=9958) I noticed that fltpage seems to indent figures slightly (by perhaps ~1 mm), compared to figures inserted using a simple figure environment.
I realise that fltpage is considered experimental, but was wondering if this is expected behaviour, or is perhaps just limited to my setup (MiKTeX 2.8, pdfLaTeX, Windows XP Pro). It's not such a big deal, it just grates on me a bit, so I just thought I'd ask.
Here is an example image comprised from screen shots taken from the MWE, below. Figure 1 is from an FPfigure, while Figure 2 is from a regular figure environment.
Code: Select all
\documentclass{report}
\usepackage{fltpage}
\begin{document}
\begin{FPfigure}
\caption{A caption alone ... figure without a caption!}
\fbox{\rule[-10cm]{0pt}{\textheight}Figure 1\hspace{5cm}}
\end{FPfigure}
\begin{figure}
\fbox{\rule[-10cm]{0pt}{\textheight}Figure 2\hspace{5cm}}
\end{figure}
\end{document}
Alastair.