更改 Beamer 主题中间文档

更改 Beamer 主题中间文档

是否有可能在文档中间更改 beamer 主题,或者是否必须制作两个 pdf 并将它们粘贴在一起?

答案1

投影机主题(主主题以及颜色、字体、内部和外部主题)可能无法在文档中途切换。但是,可以根据所需的新主题更改投影机的内部设置(尽管可能并不总是可取的)。在下面的示例中,我模拟了从默认设置切换到“兰花”颜色主题的切换。

\documentclass{beamer}

\begin{document}

\section{First}

\begin{frame}{First}
\begin{theorem}
Some text.
\end{theorem}
\end{frame}

\setbeamercolor{block title}{use=structure,fg=white,bg=structure.fg!75!black}
\setbeamercolor{block title alerted}{use=alerted text,fg=white,bg=alerted text.fg!75!black}
\setbeamercolor{block title example}{use=example text,fg=white,bg=example text.fg!75!black}

\setbeamercolor{block body}{parent=normal text,use=block title,bg=block title.bg!10!bg}
\setbeamercolor{block body alerted}{parent=normal text,use=block title alerted,bg=block title alerted.bg!10!bg}
\setbeamercolor{block body example}{parent=normal text,use=block title example,bg=block title example.bg!10!bg}

\section{Second}

\begin{frame}{Second}
\begin{theorem}
Some text.
\end{theorem}
\end{frame}

\end{document}

答案2

包裹颜色变化允许您在演示文稿中更改颜色主题。

相关内容