如何在 URL 中插入垂直居中的波浪号?

如何在 URL 中插入垂直居中的波浪号?

我需要在文本模式下将垂直居中的波浪号插入 URL(不在\url\href命令内)。我尝试了建议的解决方案这里但我无法让它工作。有什么想法吗?

这是我的代码

\documentclass[]{beamer}

\usepackage{textcomp}
\newcommand{\textapprox}{\raisebox{0.5ex}{\texttildelow}}

\begin{document}

\begin{frame}
\frametitle{MWE}
https://foo.com/\textapprox{}user/
\end{frame}

\end{document}

这是我得到的错误

! LaTeX Error: Command \textapprox already defined.
               Or name \end... illegal, see p.192 of the manual.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.4 ...extapprox}{\raisebox{0.5ex}{\texttildelow}}
                                                  
? 

答案1

因为错误表明命令名称已经存在。

因此使用另一个或重新定义现有命令(如果您确定不需要它)

相关内容