When I use \ref my output is just the number of the table or letter of the appendix. So for example in my MWE below when I enter See \ref{Test1} my output is See 1.1 and for See \ref{AppendixA} output is See A.
Is there a way to have the output to be See Table 1.1 and See Appendix A?
\documentclass[11pt, a4paper, oneside, oldfontcommands]{memoir}
\usepackage{lipsum} % just for dummy text
\begin{document}
\chapter{This is a test chapter}
hello there, please see \ref{AppendixA}
\begin{table}[h]
\centering
\begin{tabular}{ll}
Test & Table \\
1 & 2 \\
3 &
\end{tabular}
\caption{Test Table}
\label{Test1}
\end{table}
\lipsum[1] Please see \ref{Test1}
\appendix
\chapter{This is a test Appendix} % Main appendix title
\label{AppendixA} % For referencing this appendix elsewhere, use \ref{AppendixA}
\lipsum[1]
\end{document}
hyperrefand use\autorefinstead of just\ref. – Werner Jun 16 '15 at 19:17\autoreftip. Usinghyperrefpackage already so that is handy. – gman Jun 17 '15 at 09:28