当 classdocument 是 beamer 时,如何在同一行显示脚注

当 classdocument 是 beamer 时,如何在同一行显示脚注

当我想在第一张幻灯片的末尾在同一行显示脚注时,脚注不会显示。

我在 footmisc 包中包含了选项 [para],这应该使我的脚注显示在同一行。但是,这个选项却使脚注消失了。虽然显示了较小的数字,但最后的脚注却没有显示。

这是我正在使用的代码

   \documentclass{beamer}
\mode<presentation>
{
  \usetheme{Madrid}       % or try default, Darmstadt, Warsaw, ...
  \usecolortheme{default} % or try albatross, beaver, crane, ...
  \usefonttheme{serif}    % or try default, structurebold, ...
  \setbeamertemplate{navigation symbols}{}
  \setbeamertemplate{caption}[numbered]
} 
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
%para pies de pagina horizontales
\usepackage[para]{footmisc}
\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@book{key,
  author = {Author, A.},
  year = {2001},
  title = {Title},
  publisher = {Publisher},
}
\end{filecontents}
\begin{document}
\begin{frame}{Justificación}

\begin{itemize}
\item \textbf{Definición:} Desarrollo sostenible(DS). Preservación del equilibrio.\footnote{\cite{key}}
\item  \textbf{Enfoques}: Sostenibilidad débil: crecimiento de la riqueza; Sostenibilidad fuerte: Persistencia e integridad de los recursos, resiliencia y estabilidad de las relaciones.\footnote{\cite{key}}
\item \textbf{Problema}:
Estudio y comprensión de los sistemas desde el desarrollo sostenible: ¡Problema mundial!
\item \textbf{Modelos matemáticos}: Pueden ser usados como herramienta de decisión, diseñar estrategias, soluciones responsables
\footnote{\cite{key}, \cite{key} \cite{key}\cite{key}}.
\end{itemize}
\end{frame}

\begin{frame}{Frame Title}
\bibliographystyle{plain}
\bibliography{\jobname}    
\end{frame}
\end{document}

相关内容