解決Warsaw主題block title中使用footnote渲染錯誤的問題
筆者使用Beamer制作學術PPT,最近剛由Berlin主題切換為Warsaw主題,卻發現在block的title中插入腳注footnote,竟然無法在頁面底部顯示。
解決方法:使用 \footnotemark 和 \footnotetext 分離腳注標記和腳注內容
\documentclass{beamer}
\usetheme{Warsaw}
\usepackage{lipsum}
\begin{document}
\begin{frame}
\begin{block}{標題\footnotemark}
內容內容
\end{block}
\footnotetext{這是腳注內容,正常顯示在頁面底部。}
\end{frame}
\end{document}
\footnotemark放在標題中,生成腳注標記但不輸出腳注內容。\footnotetext放在frame里(block外),顯示腳注內容。

浙公網安備 33010602011771號