hello,
footnote{\verb{...}} causes "undefined contrl sequence".
any idea?
General ⇒ footnote{\verb{...}} causes "undefined contrl sequence".
NEW: TikZ book now 40% off at Amazon.com for a short time.
footnote{\verb{...}} causes "undefined contrl sequence".
Hi,
the fancyvrb package could be an option. Take a look at the following example:
Refer to the package documentation for further information.
the fancyvrb package could be an option. Take a look at the following example:
Code: Select all
\documentclass{article}
\usepackage{fancyvrb}
\begin{document}
\VerbatimFootnotes
Some text\footnote{\verb=a test footnote.=}
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: footnote{\verb{...}} causes "undefined contrl sequence".
helpful, thanks.
\VerbatimFootnotes
\foonote{\verb=http://lib.stat.cmu.edu/=} %fine
however,
\usepackage{html}
\VerbatimFootnotes
\foonote{
\htmladdnormallink{\verb=http://lib.stat.cmu.edu/=}{http://lib.stat.cmu.edu/}
}%no longer fine
\VerbatimFootnotes
\foonote{\verb=http://lib.stat.cmu.edu/=} %fine
however,
\usepackage{html}
\VerbatimFootnotes
\foonote{
\htmladdnormallink{\verb=http://lib.stat.cmu.edu/=}{http://lib.stat.cmu.edu/}
}%no longer fine
- Stefan Kottwitz
- Site Admin
- Posts: 10321
- Joined: Mon Mar 10, 2008 9:44 pm
footnote{\verb{...}} causes "undefined contrl sequence".
Hi,
you could use the url package instead of verbatim environments/commands:
Stefan
you could use the url package instead of verbatim environments/commands:
Code: Select all
\usepackage{url}
...
...\url{http://lib.stat.cmu.edu/}...
LaTeX.org admin