I'm attempting to put a URL in a footnote.
This works
wording:\footnote{http://www.cyberhymnal.org/htm/o/w/owtking.htm\#Kethe}}
This doesn't
Test\footnote{http:\\chi.gospelcom.net\DAILYF\2003\06\daily-06-09-2003.shtml}
}
The error message complains about a missing $. Latex seems to be in math mode.
Here is an attempt at a work around that doesn't work either.
Test\footnote{\begin{verbatim}http:\\chi.gospelcom.net\DAILYF\2003\06\daily-06-09-2003.shtml\end{verbatim}
}}
Can't have \begin{verbatim} ... \end{verbatim} inside \footnote{...}
Help please
General ⇒ URL in footnote
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
URL in footnote
Hi George,
I recommend to use the url package:
Stefan
I recommend to use the url package:
Code: Select all
\usepackage{url}
...
Text\footnote{\url{http://...}}
LaTeX.org admin
Re: URL in footnote
Sounds good. I'll try it.
george
george
Re: URL in footnote
