I'm using imakeidx to create the index of my thesis and I would like to have hyperlinks to the pages that are hereby cited. Unlike this discussion, I'm using the cleveref package.
Here is the MWE that reproduces the problem:
\documentclass{scrbook}
\usepackage{classicthesis}
\usepackage{imakeidx}
\makeindex
\usepackage{cleveref}
\begin{document}
\chapter{First chapter}
This is the first definition:\index{First definition}
\begin{equation}
a=\frac{b}{c}
\end{equation}
\chapter{Second chapter}
This is the second definition\index{second definition}
\begin{equation}
b=a\times c
\end{equation}
\printindex
\end{document}
Every suggestion is welcome.
classicthesisloads alsohyperref! Now it works perfectly. Thank you Enrico, your package is really nice. – mp87 Apr 15 '12 at 00:06