带波浪符号的超链接

带波浪符号的超链接

如何让波浪号出现在以下文档的 URL 中?我知道这个问题之前已经被问过很多次了,但是谷歌搜索对我的情况没有帮助。以下文档没有显示 URL 中的波浪号。

\documentclass[letterpaper,10pt]{letter}
\usepackage[ansinew]{inputenc}
\usepackage{lmodern}
\usepackage[T1]{fontenc}

\usepackage[lowtilde]{url} 
\usepackage{hyperref} 

\begin{document}

\href{http://www.university.edu/~person/index.html}{http://www.university.edu/~person/index.html}

\end{document}

答案1

一个解决方案就是使用\(\sim \),另一个是\textasciitilde

演示

\href{http://www.university.edu/~person/index.html}{http://www.university.edu/\(\sim \)person/index.html}

\href{http://www.university.edu/~person/index.html}{http://www.university.edu/\textasciitilde person/index.html}

相关内容