因為我想盡可能地利用海報中的空間,所以我想讓腳註(包括引文)看起來連續(在一行中)。經過搜索我發現這個帖子這表明我可以使用該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
。
我可能會簡單地假裝para樣子。例如
\setcounter{footnote}{1}
\footnotetext{osborne-rubinstein, \textsuperscript{2}test}