General ⇒ URL in footnote
URL in 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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
URL in footnote
I recommend to use the url package:
Code: Select all
\usepackage{url}
...
Text\footnote{\url{http://...}}
Re: URL in footnote
george
Re: URL in footnote
