5

Is it possible, that one of my slide in beamer is 11 pt and I want 10 pt font in other slide?

Werner
  • 603,163
Ahmad
  • 557
  • 2
  • 6
  • 11
  • Yes. Does this hold for everything on the frame, including the frame title, and footer, or just the "internal content" of the frame? – Werner Nov 24 '14 at 23:18
  • Internal content sir – Ahmad Nov 24 '14 at 23:20
  • 5
    still one sentence questions with no example? – percusse Nov 24 '14 at 23:33
  • Again sorry sir. But sir I dont want to cheat. You know if i upload the code , you great people will edit it and it will be copied back. I just want to take an idea from you people and edit it on my own – Ahmad Nov 24 '14 at 23:40
  • 3
    @Ahmad It makes it much harder to answer if you don't provide a test document. Look at werner's answer, he had to write a complete document to test the answer, you should have provided that. – David Carlisle Nov 24 '14 at 23:42
  • 1
    Ok sir. I got it. From next time , I will provide you the material. Thanks sir. – Ahmad Nov 24 '14 at 23:49
  • 1
    and please, don't call me sir:-) If you want to reply to someone use the @ otherwise they probably will not see it. – David Carlisle Nov 25 '14 at 00:09

1 Answers1

13

You can switch to a different font size outside the frame, and specify the scope using a group:

enter image description here

\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}

Above I've specified \small, which defaults to 10pt font under an 11pt document class option.

Since each of the frame components use template-specific settings, they need to be adjusted separately. However, the above technique is an easy one to update the internal frame content only.

Werner
  • 603,163