我想選擇一個hyperref
有其缺點的%
http://es.wikipedia.org/wiki/Lept%C3%B3n
有辦法踢出去嗎%
?
答案1
巨集\href
並\url
更改類別代碼%
以獲得其評論行為:
\url{http://es.wikipedia.org/wiki/Lept%C3%B3n}
\href{http://es.wikipedia.org/wiki/Lept%C3%B3n}{Lept\'on}
但在另一個巨集的參數內,這將不起作用,因為在執行內部\url
or之前,百分比已經被讀取為註解字元。\href
由於參數已被讀取,因此類別變更來得太晚了。因此hyperref
也提供了\%
獲取 URL 中的百分比字元的方法,例如:
\footnote{\url{http://es.wikipedia.org/wiki/Lept\%C3\%B3n}}
答案2
\url
包中的 和其他命令負責hyperref
處理其輸入路徑和字元。所以%
應該沒問題。
\documentclass{article}
\usepackage{hyperref}
\begin{document}
\url{http://es.wikipedia.org/wiki/Lept%C3%B3n}
\end{document}