Quiero agregar un par de citas a mi cartel pero tengo un problema con respecto al lugar donde aparecen las citas.
En el código que sigue (un ejemplo mínimo que, por alguna razón, no puedo entender para ser honesto, da un error pero genera un archivo pdf de todos modos), lo que quiero es que las citas aparezcan al final de la página. Por el contrario, aparecen justo después del siguiente entorno tabular (o después de la siguiente imagen tikz en mi póster completo) como puedes ver en la siguiente imagen.
Debo mencionar que estoy usando el beamerthemeI6pd2
estilo. Me encantaría saber porque pasa esto y como solucionarlo ya que no tengo mucha experiencia en látex, aún así me encanta.
\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}
EDITAR
Después de algunas pruebas, reduje el problema. Parece que el uso de la minipage
etiqueta confunde al cite
comando cuando se trata de la ubicación de la cita. ¿Alguien tiene idea de por qué sucede esto y cómo evitarlo?
Respuesta1
El problema aquí es que \footfullcite
usa \footnote
y, cuando se usa dentro de minipage
s/ column
s, \footnote
hace que la nota al pie/cita aparezca inmediatamente después de minipage
/ column
y no en la parte inferior de la página/marco; puedes resolver esto usando \footnotemark
en el lugar de la cita en el documento, y luego\footnotecite
afuerael minipage
/ column
, ya que \footnotecite
se usa \footnotemark
en lugar de \footnote
.
Un pequeño ejemplo (suprimí la mayor parte del código utilizado en la pregunta original que no era relevante para el problema y su solución):
\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}
Como nota al margen, mencionaste un error que no puedes explicar. El tema que estás utilizando requiere proporcionar al menos \author
y \institution
(de lo contrario se produce un error) y tener disponible cierta imagen; en su ejemplo mínimo, ninguno de esos factores se tiene en cuenta, por lo que esa podría ser la causa del problema.