I use the cleveref package to reference more than one equation simultaneously, like multicite. But it doesn't work in the appendix. I get the error
"A number should have been here; I inserted `0'." in the log file or
"Missing number, treated as zero. I use \cref{eqn:3,eqn:4}" in the kile output. This minimum working example should show what I mean:
Code: Select all
\documentclass[a4paper,10pt]{report}
\usepackage{cleveref}
\begin{document}
\chapter{sec1}
\begin{equation}
1+1=2\label{eqn:1}
\end{equation}
\begin{equation}
1+1=2\label{eqn:2}
\end{equation}
I use \cref{eqn:1,eqn:2}
\appendix
\chapter{app1}
\begin{equation}
1+1=2\label{eqn:3}
\end{equation}
\begin{equation}
1+1=2\label{eqn:4}
\end{equation}
I use \cref{eqn:3,eqn:4}
\end{document}