When I am using \chapter* command (to generate chapter without number in title) \ref command points to the last standard chapter (i.e. without *)
This is reproduction of my problem:
Code: Select all
\documentclass[a4paper]{book}
\begin{document}
\chapter{chap1}\label{lab1}
xxx
\addtocounter{chapter}{1}
\chapter*{chap2}\label{lab2}
yyy
\chapter{chap3}\label{lab3}
zzz \ref{lab2}
\end{document}
Chapter 1
chap1
xxx
---
chap2
yyy
---
Chapter 3
chap3
zzz 1 (sic!)