I'm using the package IEEEtrantools in an scrreprt document class environment. My problem is that, when using IEEEeqnarray together with hyperref, the link jumps to the beginning of the section and not to the referred equation. How can I make the link jumping to the equation?
Example:
\documentclass{scrreprt}
\usepackage[retainorgcmds]{IEEEtrantools}
\usepackage{hyperref}
\begin{document}
\section{The equation}
\newpage
\begin{IEEEeqnarray}{c}
\frac{1}{v(E)}\frac{\partial}{\partial t}\Psi(\mathbf{r},\mathbf{\Omega},E,t)
+ \mathbf{\Omega} \cdot \nabla \Psi(\mathbf{r},\mathbf{\Omega},E,t)
+ \Sigma_t(\mathbf{r},E,t) \Psi(\mathbf{r},\mathbf{\Omega},E,t)
= S(\mathbf{r},\mathbf{\Omega},E,t)
\IEEEeqnarraynumspace
\label{eq:Boltzmann}
\end{IEEEeqnarray}
\newpage
Referencing (\ref{eq:Boltzmann})...
\end{document}
