I am using harvard and hyperref packages together but in this case hyperref seems not to work properly.
Here is a minimal work space.
Code: Select all
\documentclass[a4paper,12pt,reqno]{article}
\usepackage{amsthm}
\usepackage{harvard}
\usepackage[pdfstartview=FitV]{hyperref}
\newtheorem{theorem}{Theorem}[section]
\begin{document}
\section{Main results}
\begin{theorem}[Bolzano-Weierstrass theorem]\label{thm1}
Each bounded sequence of reals has a convergent subsequence.
\end{theorem}
Theorem~\ref{thm1} %This works fine
\hyperref[thm1]{Bolzano-Weierstrass theorem} %This fails
\end{document}
Thanks a lot.
bkarpuz