
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}
메트로폴리스 테마에 이 각주를 추가할 수 있는 방법이 있나요? 감사해요!
답변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}