The boxes the hyperref package creates around links in my document are too small, hiding out the characters. I'm using latex to get a DVI, then dvi2pdfm to get a PDF. Both from MikTex 2.8. Here's an example:
\documentclass[letter,10pt]{article}
\usepackage[dvipdfm]{hyperref}
\begin{document}
\section{Example}
\section{Example} \label{example}
Section \ref{example}.
\end{document}
As you can see in the picture below, the resulting box overlaps the "2". Below it is how I expect it to look, copied from some PDF on the web (not mine).

I get the same problem if I use the "hypertex" driver in hyperref.
Any ideas on how to fix this?
pdflatex? – Andrey Vihrov Jul 13 '11 at 10:39pdflatexworks, thanks! It means I have to useepstopdffor my images and slow down the first compilation, but I can live with that. Still I'm curious about the original problem. – Adam Morrison Jul 13 '11 at 10:50latex->dvi2pdfm? Are you importing EPS or using PSTricks code? If your input file (.tex file) imports PNG, JPEG or PDF files, you should usepdflatex. If it does not solve the issue, try update your MikTeX. – xport Jul 13 '11 at 12:37