beamer 引用中的 footmisc 丢失

beamer 引用中的 footmisc 丢失

因为我想尽可能地利用海报的空间,所以我想让脚注(包括引文)看起来连续(在一行中)。经过搜索,我发现这个帖子这表明我可以使用该footmisc包来实现这一点。

问题是,当我使用它时,我的脚注会消失。请考虑以下示例代码。如果删除\usepackage[norule,para]{footmisc},脚注就会正常显示。

\documentclass{beamer}
\usepackage[norule,para]{footmisc}
\usepackage{biblatex}

\begin{document}

\begin{frame}[fragile]
  \begin{columns}
    \begin{column}{.49\textwidth}
      \begin{beamercolorbox}[center,wd=\textwidth]{postercolumn}
        \begin{minipage}[T]{.95\textwidth}
          \parbox[t]{\textwidth}{
            \begin{block}{Test}
              this is some test text\footnotemark
            \end{block}}
        \end{minipage}
      \end{beamercolorbox}
    \end{column}
    \footcitetext{osborne-rubinstein}
    %Second Column %
    \begin{column}{.49\textwidth}
      test\footnotemark
    \end{column}
    \footcitetext{test}
  \end{columns}
\end{frame}

\end{document}

footmisc这个包和这个类是否存在问题beamer或者我做错了什么?

答案1

您不能同时使用这两个包。beamer有其自己的\footnote定义,并且如果您加载,则会破坏它footmisc

我可能会假装自己看起来像个助手。例如

\setcounter{footnote}{1} 
\footnotetext{osborne-rubinstein, \textsuperscript{2}test} 

相关内容