I wanted to use a hyper link in my document that contains a percentage sign. I included the hyperref package and then tried this.
Code: Select all
\href{url://to.some_stupid%C3%BC_named.file}{some text}
Cheers!
Stevo
Code: Select all
\href{url://to.some_stupid%C3%BC_named.file}{some text}
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\href{\nolinkurl{http://domain.org/expression%20with%20blank%20spaces}}{The link Text}
Code: Select all
\documentclass[10pt,a4paper]{article}\usepackage[latin1]{inputenc}\usepackage{graphicx}\usepackage{hyperref}\begin{document}text... and as you can see when using\begin{figure}[htb]\begin{center}\leavevmode\fbox{\includegraphics[width=0.95\textwidth]{./figs/oxygen} }\end{center}\caption{\href{http://commons.wikimedia.org/wiki/File:Molek\%C3\%BClorbital-Sauerstoff.png}{this link}, blabla}\end{figure}some more text\end{document}
Code: Select all
\documentclass[10pt,a4paper]{article}\usepackage[latin1]{inputenc}\usepackage{hyperref}\begin{document}text... and as you can see when using\href{http://commons.wikimedia.org/wiki/File:Molek%C3%BClorbital-Sauerstoff.png}{this link}some more text\end{document}
\
(backslash):
Code: Select all
\href{url://to.some_stupid\%C3\%BC_named.file}{some text}
NEW: TikZ book now 40% off at Amazon.com for a short time.