I'm trying to refer to a table in my report, but the reference wouldn't include the word 'Table' as follows. Any ideas why? :) 
The LaTeX code is as follows:
\documentclass[11pt,a4paper]{article}
\begin{document}
The figures is listed in \ref{table:1}
\begin{table}[!ht] \centering
\caption{This is a table \label{table:1}}
\begin{tabular}{c | c}
\hline
Column 1 & Column 2 \\ \hline
A & 1 \\
B & 2 \\
C & 3 \\
D & 4 \\
\hline
\end{tabular}
\end{table}
\end{document}
Thanks in advance!
hyperrefalong with the\autorefcommand. – Johannes_B Apr 10 '15 at 18:07cleverref... – Mensch Apr 10 '15 at 18:07booktabsprovides some useful commands and hints in the doc on typesetting tables. Packagecaptioncn help you in aligning the caption. ;-) – Johannes_B Apr 10 '15 at 18:08listed in Table~\ref{table:1}. – James Apr 10 '15 at 18:18