Overleaf 有一个非常漂亮的基于 Beamer 类的羽毛主题,可用于演示。我的问题是,当我添加类选项时,aspectratio=169
页脚线消失了。
对阵
答案1
羽毛主题的结构看起来很奇怪。虽然脚线的文本是通过正常的脚线模板插入的,但蓝线是背景的一部分,并且与框架顶部保持固定距离......
\documentclass[10pt,
aspectratio=169
]{beamer}
\usetheme{Feather}
\title{The Feather Beamer Theme}
\subtitle[The Feather Beamer Theme]{v. 1.0.0}
\author[Lilyana Vankova]{Lilyana Vankova}
\institute[]{Faculty of Mathematics, Informatics and Information}
\date{\today}
\setbeamercolor{footline}{bg=structure.fg,fg=white}
\setbeamertemplate{footline}{%
\begin{beamercolorbox}[wd=1.0\paperwidth,left,ht=2.5ex,dp=1ex]{footline}
\usebeamerfont{section in head/foot}%
\hspace*{3.5ex}%
\insertshortauthor\ |\
\insertshorttitle
\insertshortsubtitle
\end{beamercolorbox}
}
\begin{document}
\begin{frame}
test
\end{frame}
\end{document}