如何添加\感谢都市主题?

如何添加\感谢都市主题?

我想在使用 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}

在此处输入图片描述

相关内容