Document ClassesCustom Font in Presentation

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
aquamarijn
Posts: 8
Joined: Wed Aug 15, 2012 11:37 pm

Custom Font in Presentation

Post by aquamarijn »

I would like to use the mathdesign font by the giving the option utopia, for math and text in a presentation, using the document class beamer. Compiling the document produces this error message.

Code: Select all

There is no room for a new \mathgroup
But it doesn't produce the desired PDF output. Below is an example.

Code: Select all

\documentclass{beamer}
\usepackage[utopia,greekuppercase=italicized]{mathdesign}

\begin{document}

\begin{frame}
First frame
\end{frame}

\end{document}
How can I use the font in the presentation?

Thank you for your attention,
Jaap
Last edited by cgnieder on Fri Oct 18, 2013 7:44 pm, edited 1 time in total.

Recommended reading 2024:

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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

aquamarijn
Posts: 8
Joined: Wed Aug 15, 2012 11:37 pm

Custom Font in Presentation

Post by aquamarijn »

The problem is solved by using a corresponding font theme.

Code: Select all

\usefonttheme{professionalfonts}
See the beamer user guide.
Post Reply