
我想在使用 Metropolis 主題時將 \thanks 添加到我的標題頁,但在下面的最小工作示例中,沒有任何反應 - 只是作者旁邊有一個 1,但腳註中沒有任何內容。
\documentclass[aspectratio = 169]{beamer}
\usetheme[progressbar=frametitle]{metropolis}
\usepackage{appendixnumberbeamer}
\usepackage{booktabs}
\usepackage[scale=2]{ccicons}
\usepackage{pgfplots}
\usepgfplotslibrary{dateplot}
\usepackage{xspace}
\newcommand{\themename}{\textbf{\textsc{metropolis}}\xspace}
\title{Short and snappy title}
% \subtitle{A modern beamer theme}
\date{\today}
\author{Author~One \and Author~Two\thanks{I acknowledge Thankee One's assistance.}}
\institute{Random Institute}
有什麼辦法可以在 Metropolis 主題中添加這個腳註嗎?謝謝!
答案1
您可以使用普通的腳註代替:
\documentclass[aspectratio = 169]{beamer}
\usetheme[progressbar=frametitle]{moloch}% modern fork of the metropolis theme
\title{Short and snappy title}
% \subtitle{A modern beamer theme}
\date{\today}
\author{Author~One \and Author~Two\footnote{I acknowledge Thankee One's assistance.}}
\institute{Random Institute}
\begin{document}
\begin{frame}[plain]
\vskip-0.1cm
\maketitle
\end{frame}
\end{document}