幻灯片之间的字体大小变化

幻灯片之间的字体大小变化

有没有可能,我的一张幻灯片beamer是 11 pt 字体,而我想在另一张幻灯片中使用 10 pt 字体?

答案1

您可以在 之外切换到不同的字体大小frame,并使用组指定范围:

在此处输入图片描述

\documentclass[11pt]{beamer}
\let\Tiny\tiny% http://tex.stackexchange.com/q/58087/5764
\begin{document}

\begin{frame}
  \frametitle{This is a title 11pt}
  Here is some content on the slide
  \[
    f(x) = ax^2 + bx + c
  \]
  Some more content
\end{frame}

\begingroup
\small% \small in 11pt base font is 10pt
\begin{frame}
  \frametitle{This is a title 10pt}
  Here is some content on the slide
  \[
    f(x) = ax^2 + bx + c
  \]
  Some more content
\end{frame}
\endgroup

\begin{frame}
  \frametitle{This is a title 11pt}
  Here is some content on the slide
  \[
    f(x) = ax^2 + bx + c
  \]
  Some more content
\end{frame}

\end{document}

上面我已经指定\small,它在 11pt 文档类选项下默认为 10pt 字体。

由于每个框架组件都使用特定于模板的设置,因此需要单独调整它们。但是,上述技术是一种简单的技术,可以仅更新内部框架内容。

相关内容