我想在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}
答案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}