非常感谢有人能帮我解决此问题。我想在我的 Beamer 演示文稿中创建一个非常简单的脚注,但我发现没有一个适合我(而且我在自定义方面遇到了麻烦——我对 Beamer 还比较陌生)。
我希望我的名字位于左边,而框架幻灯片编号(总数,例如 30/31)位于右边,并且我希望背景颜色与最顶部标题的背景相同(或者框架标题的颜色也可以)。
附上一张大致是我希望实现的图像(不过右边用的是框架 # 而不是 University)。我也喜欢下面的白线,所以如果能保留它就太好了(虽然不是必须的)。屏幕截图中的结果是通过组合多个主题实现的(我试图避免这种情况,之前有人帮助我避免了这种情况),这就是为什么 MWE 与屏幕截图不完全对应的原因。
预先感谢您的任何帮助!
%\documentclass[10pt]{beamer}
%\documentclass[10pt, handout]{beamer} %for no pauses
\usepackage{graphicx}
\usepackage{amsmath}
\usefonttheme{professionalfonts}
\usefonttheme{serif}
\usepackage{mathpazo}
\usepackage{multicol}
\usepackage{adjustbox}
\usetheme{Frankfurt}
\usecolortheme{dolphin} \definecolor{myblue}{RGB}{111,110,200} \setbeamercolor{structure}{fg=myblue} \setbeamercolor{section in head/foot}{bg=myblue}
\setbeamertemplate{section in toc}{\inserttocsectionnumber.~\inserttocsection}
\AtBeginSection[]
{
\begin{frame}<beamer>{Outline}
\tableofcontents[currentsection,currentsubsection]
\end{frame}
}
\setbeamercolor{alerted text}{fg=MediumBlue}
\title{Title}
\author{Name}
\institute[University]
{
Department \\
University \\
}
% - Use the \inst command only if there are several affiliations.
% - Keep it simple, no one is interested in your street address.
\date{DATE}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\section{Sample}
\begin{frame}{Sample}
\begin{itemize}
\item Test
\item Test
\end{itemize}
\end{frame}
\end{document}
答案1
更新:这似乎大致满足了我的要求(但如果有办法让脚注颜色比标题颜色更浅就更好了!)
\setbeamertemplate{footline}
{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.5\paperwidth,ht=2.25ex,dp=1ex,left]{section in head/foot}%
\usebeamerfont{author in head/foot}\hspace*{1em}\insertshortauthor~~\beamer@ifempty{\insertshortinstitute}{}{(\insertshortinstitute)}
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.5\paperwidth,ht=2.25ex,dp=1ex,right]{section in head/foot}%
\usebeamerfont{date in head/foot}\hspace*{2em}
\insertframenumber{} / \inserttotalframenumber\hspace*{2ex}
\end{beamercolorbox}}%
\vskip0pt%
}
\makeatother