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
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics
User avatar
Stefan Kottwitz
Site Admin
Posts: 10270
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