我想制作一个边缘带有白色边距的 Beamer 演示文稿,这样整个幻灯片都会受到这些边距的影响(例如,包括我的柏林海狸主题的彩条)。所以所有内容周围都会有一个白色边框。我该怎么做?这可能吗?
到目前为止,我发现只会影响幻灯片中的文本,但颜色条仍保留在幻灯片边缘的原处。以防万一:我需要不同的上/下边距宽度(80px)和左/右边距宽度(100px)。
提前致谢。
答案1
框架的最顶层绘制的是脚线。您可以将边距添加到此层,例如使用 tikz 图片。要获得不同的线宽,请用单独的线条替换矩形。
\documentclass{beamer}
\usetheme{Warsaw}
\usepackage{tikz}
\makeatletter
\setbeamertemplate{footline}{%
\leavevmode%
\hbox{\begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fill,rightskip=.3cm]{author in head/foot}%
\usebeamerfont{author in head/foot}\insertshortauthor
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}%
\usebeamerfont{title in head/foot}\insertshorttitle
\end{beamercolorbox}}%
\vskip0pt%
\begin{tikzpicture}[overlay, remember picture]
\draw[color=green, line width=0.2cm] (current page.south west) rectangle (current page.north east);
\end{tikzpicture}
}
\makeatother
\begin{document}
\begin{frame}
Test
\end{frame}
\end{document}