Referring to a table in LaTeX [closed]

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

Sample data

Table \ref{table:questions} lorem lorem ipsun.

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

I get

Table 2.5 lorem lorem ipsun.

where 2.5 is the chapter number.

1 Answer
1

Leave a Comment