I'm making pdf bookmarks with hyperref and cleveref packages. However, the pdf bookmarks show the label I defined, rather than the theorem name the label refers to. Here's the code:
\documentclass{article}
\usepackage{hyperref}
\usepackage{cleveref}
\newtheorem{theorem}{Theorem}
\begin{document}
\section{Section 1}
\begin{theorem}\label{some label}
This is a theorem.
\end{theorem}
\section{Proof to \Cref{some label}}
\end{document}
And here's the pdf:

Any idea how to change the label to "Proof to Theorem 1" instead of "Proof to some label"?


\Crefis not really expandable, I fear, since it's defined to be a robust command – Mar 28 '15 at 06:47