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
が実行される前にコメント文字として既に読み取られているため、これは機能しません。引数が既に読み取られているため、カテゴリの変更は遅すぎます。したがって、URL でパーセント文字を取得する方法hyperref
も提供します。例:\%
\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}