I'm preparing a 2-column document and some figures have to span the whole page, so I'm using figure* and table*. To prevent Latex numbering the figures in a weird way I'm trying to use fixltx2e. This is numbering them as I want, but also generates errors when compiling : specifically "! Extra }, or forgotten \endgroup." I do not think there are any wayward }'s, because if I take out the line \usepackage{fixltx2e} it compiles fine.
Also, if I ignore the errors and let it compile it puts the word "table" (or "figure") wherever the code is in the text. It actually generates the figures/tables correctly.
Here's some sample code, it's a paper for MNRAS - you can download the style and class file here : http://www.wiley.com/bw/static/mnras_latex.asp
Code: Select all
\documentclass[a4,useAMS,usenatbib,usegraphicx]{mn2e}
\usepackage{subfigure}
\usepackage{lscape}
\usepackage{natbib}
\usepackage{fixltx2e}
\bibliographystyle{abbrvnat}
\setlength{\parskip}{0pt}
\begin{document}
\begin{figure*}
\begin{center}
%\includegraphics[scale=0.5]{File}
\caption[Pretty picture]{Insert pretty picture of galaxies here}
\label{Thing}
\end{center}
\end{figure*}
\end{document}
Rhys