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}