1

Possible Duplicate:
Where to put the \label on a figure environment?

I've got the table numberin with sections:

\numberwithin{table}{section}

The following table is 2.1. for example:

\begin{table}
...
\label{thelabel}
\end{table}

But when I reference this table using \ref{thelabel} I only get the 2, not the whole table number.

How to get the label and the table number right?

Meinzlein
  • 827
  • Is the \label after \caption? Yes, you need \caption in order to be able to reference it properly. – Werner Dec 15 '11 at 15:26
  • Shame on me! Your hint was just right Werner, it pointed me to a stupid mistake. Sorry. Can be closed. – Meinzlein Dec 15 '11 at 15:29

1 Answers1

2

The \label should go after the \caption in the float (table or figure) in order for the referencing to work properly.

Werner
  • 603,163