vote up 1 vote down star

How can you refer to a table number such that you get Table 7 for instance?

Sample data

Taulu \ref{table:kysymys} lorem lorem ipsun.

\begin{table}
\label{table:kysymys}
\begin{tabular}{| p{5cm} | p{5cm} | p{5cm} |}
  -- cut --
\end{tabular}
\end{table}

I get

Taule 2.5 lorem lorem ipsun.

where 2.5 is the chapter number.

flag

Thank you for your answer! – Masi Aug 30 at 5:31

2 Answers

vote up 8 vote down check

You must place the label after a caption in order to for label to store the table's number, not the chapter's number.

\begin{table}
\begin{tabular}{| p{5cm} | p{5cm} | p{5cm} |}
  -- cut --
\end{tabular}
\caption{My table}
\label{table:kysymys}
\end{table}

Table \ref{table:kysymys} on page \pageref{table:kysymys} refers to the ...
link|flag
vote up 0 vote down

Hey! Thanks a lot for this post, i had the same issue and fixed it after reading this answer.

Thanks!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.