Presentations and Postersbeamer + fourier \tilde serif font bug

Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
Post Reply
thomasb
Posts: 134
Joined: Thu Aug 03, 2017 10:54 am

beamer + fourier \tilde serif font bug

Post by thomasb »

Here is a bug for you :

Code: Select all

\documentclass{beamer}
\usepackage{fourier}
\begin{document}
\begin{frame}
$\tilde x$
\end{frame}
\end{document}
and here is the solution :

Code: Select all

\documentclass{beamer}
\usepackage{fourier}
\usefonttheme{serif} % here, there are other solutions
\begin{document}
\begin{frame}
$\tilde x$
\end{frame}
\end{document}
Other commands are affected by the sans-serif font bug in fourier package
Last edited by thomasb on Sat Aug 05, 2017 11:42 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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10358
Joined: Mon Mar 10, 2008 9:44 pm

beamer + fourier \tilde serif font bug

Post by Stefan Kottwitz »

Well it may not be really a bug, since it's a feature that beamer uses sans serif math.

This may be a good solution:

Code: Select all

\documentclass{beamer}
\usefonttheme{professionalfonts}
\usepackage{fourier}
\begin{document}
\begin{frame}
$\tilde x$
\end{frame}
\end{document}
Stefan
LaTeX.org admin
Post Reply