I'm trying to change the numbering for some chapters from numbers to letters, using:
\documentclass{report}
\setlength\parindent{0pt}
\usepackage{hyperref}
\begin{document}
Reference to chapter 1: \ref{chapter_1}
Reference to chapter A: \ref{chapter_a}
\chapter{A chapter}
\label{chapter_1}
\setcounter{chapter}{0}
\renewcommand{\thechapter}{\Alph{chapter}}%
\chapter{Another one}
\label{chapter_a}
\end{document}
Of course, using \setcounter{chapter}{0}, I end up with two chapters "1", one denoted as a number, the other as a letter, which messes up the clickable references from hyperref (in the example above, both clickable references lead to the first chapter).
Is there a way to solve that -- change one chapter to use a letter instead of a number, without messing up the references by resetting the chapter number?
hyperref. But, this has alredy been asked here on TeX.SX. – Ruben Apr 17 '16 at 19:04