Possible Duplicate:
Getting percent sign into an URL in a footnote
In reference to this question: Getting percent sign into an URL in a footnote
I'm using the url package and am still having trouble getting the % symbol to display right in footnotes. If I enter the URL address as is, I get error messages, but if I insert backslashes (replacing % with \%) the backslashes show up in the text. Any ideas on how to get the percent symbol to display properly?
%shows up as expected. – Werner Jan 26 '12 at 21:42\footnote{\url{http://web.mac.com%3A5%3A11.pdf}.}
And the backslashes show up in the text. If I don't put them in, it won't even compile because everything after the first % gets treated as comment text.
– twofeet Jan 26 '12 at 21:44\urldef\myurl\url{web.mac.com\%3A5\%3A11.pdf}and then\footnote{\myurl}and not the nested\footnote{\url{...}}notation. – Werner Jan 26 '12 at 21:51