包含 % 的超链接

包含 % 的超链接

我试图用 TeX 在我的 CV 中添加一个包含字符“%”的超链接,结果 TeX 将 % 后面的超链接部分作为注释。如能提供修复此问题的建议,我将不胜感激!

答案1

%在第一个参数(链接目标)和\%第二个参数(排版)中使用。

\documentclass{article}
\usepackage[colorlinks=true]{hyperref}
\begin{document}
\href{http://example.com/test%281%29.html}{http://example.com/test\%281\%29.html}
\end{document}

相关内容