获取超链接中的空格

获取超链接中的空格

我想在正在撰写的论文中添加超链接。我正在使用包hyperref,然后\href{<website>}{\nolinkurl{<Thing_with_spaces>}}。如何让显示空格<Thing_with_spaces>

\documentclass{article}
\usepackage{hyperref}

\begin{document}

\href{http://tex.stackexchange.com}{\nolinkurl{I Like TEX Stackexchange}}

\end{document}

显示的内容ILikeTEXStackexchange周围有一个小蓝框。我希望单词之间有空格。

答案1

\nolinkurl用于显示 URL,但不激活链接。在这种情况下,它有点过头了(而且会破坏空格);\texttt如果你想要打字机类型,请使用:

\href{http://tex.stackexchange.com}{\texttt{I Like TeX Stackexchange}}

相关内容