Document ClassesChange Math Font in Beamer

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
fmal
Posts: 1
Joined: Fri Dec 19, 2008 1:57 am

Change Math Font in Beamer

Post by fmal »

Hi all,

this is my first post to this great forum :)

I want to ask if it is possible to change the math font in beamer class.
I use the "kerkis" font for the text but I want to use the standard Computer Modern
font for the math text. Is this possible?

Thanks

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

phi
Posts: 577
Joined: Tue Oct 21, 2008 8:10 pm

Change Math Font in Beamer

Post by phi »

The file kerkis.sty doesn't seem to change the math fonts at all, only kmath.sty does. Here is a MWE:

Code: Select all

\documentclass{article}
\usepackage{kerkis}
% \usepackage{kmath}

\begin{document}
A $A$
\end{document}
Without uncommenting the third line, CM is used as math font.
Post Reply