改变投影机的纵横比(羽毛主题)

改变投影机的纵横比(羽毛主题)

Overleaf 有一个非常漂亮的基于 Beamer 类的羽毛主题,可用于演示。我的问题是,当我添加类选项时,aspectratio=169页脚线消失了。

在此处输入图片描述

对阵

在此处输入图片描述

代码可从以下位置获取:https://www.overleaf.com/14738074chdcmxfqympr

答案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}

在此处输入图片描述

相关内容