I’d like to ask you about a problem of hyperref with dvipdfmx.
The problem is that hyperlink may involve non-related object.
There’s a source code to show this problem.
Code: Select all
\documentclass{article}
\usepackage[dvipdfmx]{hyperref}
\begin{document}
\begin{equation}
x=y \label{eq1}
\end{equation}
\begin{enumerate}
\item \autoref{eq1}
\end{enumerate}
\end{document}
How should I fix it?
The same kind of problem also occurs, when a hyperlink referring something appears just after a header or a figure.
With pdflatex, I can obtain an exact link, so no problem occurs.
(However, There’s no Japanese version of pdflatex, so I need to use dvipdfmx in Japanese.)
Thank you in advance.