I came across a bug in my document whereby appendix sections (in an article) are referred to as sections, rather than as appendices. The problem is caused by the titlesec package. Here is an MWE:
Code: Select all
\documentclass{article}
\usepackage{titlesec,hyperref}
\begin{document}
\appendix
\section{One}\label{sec:one}
This is \autoref{sec:one}
\end{document}
Does anyone have a solution?
Thanks,
Chris