General ⇒ footnote{\verb{...}} causes "undefined contrl sequence".
footnote{\verb{...}} causes "undefined contrl sequence".
footnote{\verb{...}} causes "undefined contrl sequence".
any idea?
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
footnote{\verb{...}} causes "undefined contrl sequence".
the fancyvrb package could be an option. Take a look at the following example:
Code: Select all
\documentclass{article}\usepackage{fancyvrb}\begin{document}\VerbatimFootnotesSome text\footnote{\verb=a test footnote.=}\end{document}
Re: footnote{\verb{...}} causes "undefined contrl sequence".
\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: 10329
- Joined: Mon Mar 10, 2008 9:44 pm
footnote{\verb{...}} causes "undefined contrl sequence".
you could use the url package instead of verbatim environments/commands: Stefan