texlive 2025. windows 10. 完整安装.
想要比较两个实验结果的不同.我使用了overprint环境. 但是想在第二个slide上放上一个minipage.
比较奇怪的是, 在第二个slide上的footnote会自动跑到minipage里面去. 排除所有干扰的最小代码如下:
\documentclass{beamer}
\begin{document}
\begin{frame}{Bad Example}
\begin{overprint}
\onslide<1>%
I am the first slide.
\onslide<2>%
I am the second slide.\footnote{I am the footnote of second slide.}
\fbox{
\begin{minipage}[c]{5cm}
minipage with some blabla...
\end{minipage}}
\end{overprint}
\end{frame}
\end{document}
参考beamer文档改成了
\documentclass{beamer}
\begin{document}
\begin{frame}{Bad Example}
\begin{overprint}
\onslide<1>%
I am the first slide.
\onslide<2>%
I am the second slide.\footnote<2>[frame]{I am the footnote of second slide.}
\fbox{
\begin{minipage}[c]{5cm}
minipage with some blabla...
\end{minipage}}
\end{overprint}
\end{frame}
\end{document}
导致第一个slide下面会出现一个难看的横线.
请教咋解决这个问题呢?
--
修改:pianzuo FROM 116.237.73.*
FROM 116.237.73.*