I am currently working on my thesis and I discovered a nasty problem. I use the following code to reference a table:
\fref{tab:alternatives}
Now I defined the table like this:
\begin{table}[h]
\centering
\begin{tabular}{l|*{10}{c}}
%removed the content
\end{tabular}
\label{tab:alternatives}
\caption{Comparing functionalities}
\end{table}
Now when I generate the pdf fancyref produces the following: "First in table 2.2" but the table is called: "Table 2.1.: Comparing functionalities"
How can this be?
\caption, so the\labelalways has to placed after (or within) the\caption. – Torbjørn T. Mar 06 '14 at 10:49