0

Footnotes defined in environments from awesomebox package are not showing up, as in the MWE below.

\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[a4paper]{geometry}
\usepackage{awesomebox}
\usepackage{babel}
\begin{document}
\begin{noteblock}
I can't get a \verb|\footnote|!\footnote{Can I?}
\end{noteblock}
\end{document}

How can I get this working?

1 Answers1

2

Your problem comes from the fact that awesomebox use a tabular environment to create its boxes. Thus you have the same problem as this one.

To have footnotes working, you just have to add the following lines in your document header:

\usepackage{footnote}
\makesavenoteenv{tabular}

I'll add information about that in the package documentation for a future release. Thank you very much for your bug report.

milouse
  • 36