
Я хочу добавить \thanks на титульный лист при использовании темы Metropolis, но в минимальном рабочем примере ниже ничего не происходит — только 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}
Есть ли возможность добавить эту сноску в тему Метрополис? Спасибо!
решение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}