帶評論的超文本?

帶評論的超文本?

我想選擇一個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}

但在另一個巨集的參數內,這將不起作用,因為在執行內部\urlor之前,百分比已經被讀取為註解字元。\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}

相關內容