在投影仪幻灯片中添加“带走”框

在投影仪幻灯片中添加“带走”框

在 Powerpoint 演示文稿中(尤其是顾问制作的幻灯片),通常会在幻灯片底部添加一个框来标明要点。

添加此类框的 LaTeX 代码是什么?我希望它在页面上有一个固定位置,并使用固定字体进行彩色填充。有些像

在此处输入图片描述

答案1

这是一种可能性;这个想法是beamercolorbox使用 TikZ 将 放置在所需的固定位置。在每个应该接收“带走”框的帧中,只需使用\insertimptext{<text>}

\documentclass{beamer}
\usetheme{CambridgeUS}
\usepackage{tikz}

\makeatletter
\newcommand\insertimptext[1]{
\begin{tikzpicture}[remember picture,overlay]
\node[inner sep=0pt,outer sep=0pt,anchor=south] at ([yshift=20pt]current page.south)
{\begin{beamercolorbox}[wd=0.65\paperwidth,ht=3ex,dp=2ex,center]{author in head/foot}
\hfill\parbox[c][7ex][c]{0.6\paperwidth}{\centering\footnotesize#1}\hfill\null
\end{beamercolorbox}
};
\end{tikzpicture}%
}
\makeatother

\begin{document}

\begin{frame}
\frametitle{Test frame with box}
\insertimptext{Some important text associated with this frame. \\ Short texts are better}
\end{frame}

\begin{frame}
\frametitle{Test frame without box}
\end{frame}

\end{document}

在此处输入图片描述

请根据您的需要随意进行必要的调整。

相关内容