ミニページの使用により、ビーマーのポスターの引用が間違った場所にある

ミニページの使用により、ビーマーのポスターの引用が間違った場所にある

ポスターにいくつかの引用を追加したいのですが、引用が表示される場所に関して問題が発生しています。

次のコード (正直言って何らかの理由で理解できない最小限の例で、エラーが発生しますが、それでも PDF ファイルが出力されます) では、引用をページの最後に表示したいのですが、実際には次の図に示すように、次の表形式環境の直後 (または完全なポスターでは次の tikzpicture の後) に表示されます。

ここに画像の説明を入力してください

私はそのスタイルを使用していることを述べなければなりませんbeamerthemeI6pd2。私はラテックスの経験があまりないのですが、ラテックスが大好きなので、なぜこのようなことが起こるのか、またどのように解決するのかを知りたいです。

\documentclass{beamer}
\usepackage{lipsum}
\mode<presentation>{\usetheme{I6pd2}}
\usepackage[orientation=portrait,size=a4,scale=1.4,debug]{beamerposter}
\usepackage{biblatex}
\usepackage{algpseudocode}


\newlength{\columnheight}
\setlength{\columnheight}{25cm}
\fontsize{9}{10}
\selectfont
\bibliography{test3}
\graphicspath{{pix/}}


\begin{document}

\begin{frame}[fragile]
\begin{columns}
    % ---------------------------------------------------------%
    % Set up a column 
    \begin{column}{.49\textwidth}
        \begin{beamercolorbox}[center,wd=\textwidth]{postercolumn}
            \begin{minipage}[T]{.95\textwidth}
                \parbox[t][\columnheight]{\textwidth}{
                    \begin{block}{Test}
                        this is some test text \footfullcite{osborne-rubinstein}
                    \end{block}
                    \begin{block}{Test}
                        this is some test text
                    \end{block}
                    \begin{block}{Test}
                        this is some test text
                    \end{block}
                    \begin{block}{Test}
                        this is some test text
                    \end{block}
                    \begin{block}{Test}
                        \begin{tabular}{lc}
                                    \begin{minipage}{.6\textwidth}
                                        \begin{algorithmic}[0]
                                            \ForAll{attacker distributions}
                                            \ForAll{combinations of $z$,$t$,$F_z$ and $\sigma^2_z$}
                                            \State calculate payoff
                                            \State locate saddle points
                                            \EndFor
                                            \EndFor
                                        \end{algorithmic} 
                                    \end{minipage}&
                                    \begin{minipage}{.4\textwidth}
                            \textbf{Why simulations?}
                        \begin{itemize}
                            \item cheap
                            \item fast
                            \item flexible
                        \end{itemize}
                        \end{minipage} \\
                            \end{tabular}
            \end{block}
            \begin{block}{Test}
                this is some test text
            \end{block}
            \begin{block}{Test}
                this is some test text
            \end{block}
            \begin{block}{Test}
                this is some test text
            \end{block}
        }
    \end{minipage}
        \end{beamercolorbox}
    \end{column}
    % Second Column %
    \begin{column}{.49\textwidth}
        \begin{beamercolorbox}[center,wd=\textwidth]{postercolumn}
            \begin{minipage}[T]{.95\textwidth}
                \parbox[t][\columnheight]{\textwidth}{
                    \begin{block}{Test}
                      this is some test text
                    \end{block}
                    \begin{block}{Test}
                      this is some test text
                    \end{block}
                    \begin{block}{Test}
                      this is some test text
                    \end{block}
                    \begin{block}{Test}
                      this is some test text
                    \end{block}
                    \begin{block}{Test}
                      this is some test text
                    \end{block}
                    \begin{block}{Test}
                      this is some test text
                    \end{block}
                    \begin{block}{Test}
                      this is some test text
                    \end{block}
                    \begin{block}{Test}
                      this is some test text
                    \end{block}
                    \begin{block}{Test}
                      this is some test text
                    \end{block}
                    \begin{block}{Test}
                      this is some test text
                    \end{block}
                }
            \end{minipage}
        \end{beamercolorbox}
    \end{column}
\end{columns}
\end{frame}

\end{document}

編集

いくつかテストした後、問題を絞り込みました。minipageタグを使用すると、引用の場所に関してコマンドが混乱するようですcite。なぜこのようなことが起こるのか、またそれを回避する方法を知っている人はいますか?

答え1

ここでの問題は、 と をs/ s 内で使用すると、\footfullcite脚注\footnote/引用がページ/フレームの下部ではなく、/の直後に表示されることです。この問題を解決するには、文書内の引用の場所に を使用し、次にminipagecolumn\footnoteminipagecolumn\footnotemark\footnotecite /minipageの代わりにcolumn\footnotecite使用します。\footnotemark\footnote

ちょっとした例です (問題とその解決に関係のない元の質問で使用されたコードのほとんどは省略しました):

\documentclass{beamer}
\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
\end{column}
\end{columns}
\end{frame}

\end{document}

ここに画像の説明を入力してください

余談ですが、説明できないエラーについて言及されています。使用しているテーマでは、少なくとも\author\institution(そうでない場合はエラーが発生します) を提供し、特定の画像を用意する必要があります。最小限の例では、これらの要素はいずれも考慮されていないため、これが問題の原因である可能性があります。

関連情報