为什么我的演示中忽略了 footskip?

为什么我的演示中忽略了 footskip?

这是我正在构建的第一个投影仪演示文稿,当我尝试使用增加底部边距时\addtolength{\footskip},没有任何效果。

\documentclass[12pt,table]{beamer}
\setbeamersize{text margin left=25mm,text margin right=25mm}

\usepackage{lipsum}

\author{Author}
\title{Title}
\date{11/15/2017}

\addtolength{\headsep}{0.6cm} % to increase top margin in beamer

\begin{document}
\addtolength{\footskip}{0.6cm} % to increase bottom margin in beamer

    \maketitle

\lipsum

\end{document}

答案1

如果您想增加文本和框架顶部之间的距离,您可以为标题或框架标题添加额外的垂直空间(取决于空间应该位于框架标题上方还是下方)。

然而底部边距在 beamer 中实际上毫无意义。如果你在框架中放入过多的文本,无论是否有边距,文本都会溢出到底部。

\documentclass[12pt,table]{beamer}
\usepackage{lipsum}

\addtobeamertemplate{headline}{}{\vspace*{1cm}}
\addtobeamertemplate{frametitle}{\vspace*{-1cm}}{\vspace*{1cm}}

\begin{document}

\begin{frame}
\lipsum
\end{frame}

\begin{frame}
\frametitle{title}
\lipsum
\end{frame}

\end{document}

相关内容