Document ClassesBeamer font size normal text

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
remusmp
Posts: 25
Joined: Sat Oct 17, 2009 8:37 pm

Beamer font size normal text

Post by remusmp »

Hej,

I would like to change the font size of all texts (normal texts) in every frame to \small. Right now I am using \small at the beginning of every frame but I want to write it only once (globally).


Thank you very much :D

R.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Beamer font size normal text

Post by localghost »

Code: Select all

\documentclass[…,smaller,…]{beamer}
See beamer manual.


Best regards
Thorsten
remusmp
Posts: 25
Joined: Sat Oct 17, 2009 8:37 pm

Re: Beamer font size normal text

Post by remusmp »

I wouldn't like to use documentclass. Is there a beamer command for it? I did my own beamer template and I will distribute it to more people. I just don't want them to write \documentclass[smaller]{beamer}... I would like to set the 'smaller' option in my .sty file.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Beamer font size normal text

Post by localghost »

Searching the class file for »smaller« directs you to the critical line.

Code: Select all

\def\beamer@size{{size10.clo}}
Post Reply