Using the package hyperref, I can use \url to produce clickable URLs. But in the viewers I have their boundaries are very badly set. Example:
Hence, I prefer to use \href{}{}, which works most of the time. But in the examples in this picture it crashes. This is a near minimal crashing example:
\documentclass{article}
\usepackage{hyperref}
\begin{document}
%\url{https://en.m.wikipedia.org/wiki/Spirit_way}
\href{https://en.m.wikipedia.org/wiki/Spirit_way}{https://en.m.wikipedia.org/wiki/Spirit_way}
\end{document}
What should I change?


urlpackage, or just escape the underscore with a backslash:Spirit\_way– Michael Palmer Jul 31 '17 at 19:57