In chapter1.tex I write
Code: Select all
\footnote{See Annex \ref{AnnexA}}
Code: Select all
\chapter{Annex A}\label{AnnexA}
When the document compiles, I see in the PDF, the footnote, but it does say "See Annex A" as it should do, but "See 8.2.7". The hyperlink does work.
How can I force this to show the correct text on compiling?
Code: Select all
\documentclass[oneside,8pt]{Classes/myClass}
\begin{document}
\usepackage[toc,page]{appendix}
\maketitle
\frontmatter
\tableofcontents
\mainmatter
\include{Chapter1/chapter1}
\backmatter
\begin{appendices}
\renewcommand{\thesection} {A.\arabic{section}}
\include{AnnexA/AnnexA} % Annex A
\end{appendices}
\end{document}