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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

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