Beamer Metropolis 部分页面脚注无标记

Beamer Metropolis 部分页面脚注无标记

我想在metropolis主题中的部分页面的进度条下方写一段文字。我发现,在某种程度上,脚注可以作为一种解决方案。但是我没有成功删除脚注编号。我尝试了一些问题/答案对,例如,无标记的脚注如何在 Beamer 中删除脚注标记(数字)?无标记的脚注。但并未成功,因为要么它给出了错误,要么虽然它删除了脚注文本处的脚注标记,但指示器仍停留在放置脚注的位置。

以下是 MWE:

\documentclass{beamer}
\usetheme{metropolis}
\renewcommand\footnoterule{}

\begin{document}

\section{over the section bar\footnote{under the section bar}}

\begin{frame}

text 

\end{frame}

\end{document}

这会产生以下内容(我希望两个 a 都消失): 编译后的 LaTeX 代码的屏幕截图

答案1

您可以将文本暂时添加到模板的末尾section page(您可能需要微调长度才能将文本准确地放在您想要的位置):

\documentclass{beamer}
\usetheme{moloch}% modern fork of the metropolis theme
\renewcommand\footnoterule{}

\begin{document}

{
\addtobeamertemplate{section page}{}{\vskip-1cm\hspace{1.1cm}\usebeamerfont{footnote}\usebeamercolor[fg]{footnote}under the section bar}
\section{over the section bar}
}

\begin{frame}

text 

\end{frame}

\end{document}

在此处输入图片描述

相关内容