在投影仪的脚注中插入表格导致幻灯片空白

在投影仪的脚注中插入表格导致幻灯片空白

在 beamer 中,tabular脚注中的环境会导致意外的空白幻灯片。(我宁愿有满满的垂直框)

如果添加另一个脚注,空白幻灯片就会消失。

MWE(TeX Live 2022、XeLaTeX):

\documentclass{beamer}
\usepackage{array}
\begin{document}
\begin{frame}
  A.\footnote{Tabular here \begin{tabular}{|l|} \hline A \\ \hline B \\ \hline \end{tabular}.}
  
  \pause
  B.% try uncomment the next line
  %\footnote{Footnote.}
\end{frame}
\end{document}

空白幻灯片

答案1

最好的解决办法是倾听

唐,不要在你的书中使用脚注。

\作者 JILL ^{KNUTH} (1962)


肮脏的黑客:

\documentclass{beamer}
\usepackage{array}

\begin{document}
\begin{frame}
  A.\footnote{Tabular here \smash{\begin{tabular}{|l|} \hline A \\ \hline B \\ \hline \end{tabular}}.\vskip1cm}
  
  \pause
  B.% try uncomment the next line
  %\footnote{Footnote.}
\end{frame}
\end{document}

相关内容