Fonts & Character SetsBeamer + MinionPro

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
remusmp
Posts: 25
Joined: Sat Oct 17, 2009 8:37 pm

Beamer + MinionPro

Post by remusmp »

Hej,

I need help :D MinionPro + Beamer

This piece of code works ok (no Beamer):

Code: Select all

\documentclass{article}
\usepackage{MinionPro}
\title{Random Title}
\begin{document}
\maketitle

\section{A Section}
Random text
\end{document}
When I print some text in beamer, the fonts are not MinionPro:

Code: Select all

\documentclass{beamer}
\usepackage{MinionPro}
\title{Random Title}
\begin{document}
\frame{
\titlepage
}
\frame{
Random text
}
\end{document}
So... How should I change the fonts in Beamer to MinionPro? It works with article documentclass but not with Beamer.

Thank you.
R.

Recommended reading 2024:

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

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

User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: Beamer + MinionPro

Post by frabjous »

This is probably because Beamer defaults to the default sans serif font, rather than the default serif font, and Minion Pro is a serif font.

Add

\usefonttheme{serif}

right after loading the MinionPro package.

And see if that helps.

(I'd test it, but I don't have Minion Pro installed right now.)

See the beamer user's guide pp. 177-178 for more info.
remusmp
Posts: 25
Joined: Sat Oct 17, 2009 8:37 pm

Re: Beamer + MinionPro

Post by remusmp »

It worked!!!!


Thank you very much. Now it looks fancy :)
Post Reply