如何编写使用反斜杠的 URL?

如何编写使用反斜杠的 URL?

我正在尝试在我的文档中链接来自服务器的目录,并且由于它是 Windows 符号,所以只允许使用反斜杠:\\server\path\to\dir

但是使用该hyperref包,我无法让它工作。

\href{run:\backslash\backslash server\backslash path\backslash to\backslash dir}{link}

导致出现奇怪的转义字符,并且

\href{run:\textbackslash\textbackslash server\textbackslash path\textbackslash to\textbackslash dir}{link}

导致编译错误。有什么帮助吗?

编辑:由于本文档仅供内部使用,因此主要涉及 URL 中的反斜杠问题,因为这是转义字符。

答案1

您可以使用\\来转义反斜杠:

 \href{run:\\\\server\\path\\dir}{link}

相关内容