Took me a while to get one up. It turns out it's hyperref giving me the warning but the footnote still isn't printing irregardless of whether it's enabled or not:
Code: Select all
%& -shell-escape
\documentclass{article}
\usepackage{amsmath}
\usepackage{framed}
\usepackage[amsmath, amsthm, framed, thmmarks]{ntheorem}
\newframedtheorem{example}{Example}[section]
\begin{document}
\section{Test}
\begin{example}[Foo]
Bar\footnote{Baz}
\end{example}
\end{document}
Compiles without a warning, but does not put a footnote on the page.
Code: Select all
%& -shell-escape
\documentclass{article}
\usepackage{amsmath}
\usepackage{framed}
\usepackage[colorlinks=true]{hyperref}
\usepackage[amsmath, amsthm, framed, thmmarks]{ntheorem}
\newframedtheorem{example}{Example}[section]
\begin{document}
\section{Test}
\begin{example}[Foo]
Bar\footnote{Baz}
\end{example}
\end{document}
Compiles with a warning, decorates the link and does not put the footnote on the page.
So either way it's not really helping me, but I guess if I'm able to put a footnote down then hyperref will behave too.