I keep running to an error that relates to referring to one of the tables in my paper. Suppose I have the following figure at the bottom of the paper:
\begin{table}
\centering
\caption{This is the table that breaks...}
\begin{tabular}{\hsize}{@{\extracolsep{\fill}}cccc}
one & two & three \cr
\hline
1 & 5 & 9 \cr
2 & 6 & 10 \cr
3 & 7 & 11 \cr
4 & 8 & 12 \cr
\hline
\end{tabular}
\label{table:mybrokentable}
\end{table}
I refer to the table by including \ref{table:mybrokentable}. This worked fine for two references, but I was able to narrow down the error to the very last reference (the third) to this table. Any ideas what is happening?
\refit comes from the code that tries to position the float on the page. Can you make a complete but small example that generates the error: keep removing things until the error goes away and post the smallest document that shows the error. – David Carlisle Apr 26 '12 at 18:00