Graphics, Figures & Tablesfourier vs lmodern : 'plus' sign doesn't show in tikz

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
thomasb
Posts: 134
Joined: Thu Aug 03, 2017 10:54 am

fourier vs lmodern : 'plus' sign doesn't show in tikz

Post by thomasb »

A minimal example where the '+' appears :

Code: Select all

\documentclass{article} 
\usepackage{tikz}
\usepackage{lmodern}
\usepackage{fourier}
\begin{document}
\begin{tikzpicture}
  \draw (0,0) node {$a+b$};
\end{tikzpicture}
\end{document}
Now, the '+' doesn't appear :

Code: Select all

\documentclass{article} 
\usepackage{tikz}
\usepackage{fourier}
\usepackage{lmodern}
\begin{document}
\begin{tikzpicture}
  \draw (0,0) node {$a+b$};
\end{tikzpicture}
\end{document}

Recommended reading 2024:

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

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

user22741
Posts: 35
Joined: Fri Nov 09, 2018 12:03 pm

fourier vs lmodern : 'plus' sign doesn't show in tikz

Post by user22741 »

What is the purpose of overwriting one font with another? Use only the one font you want to use.
thomasb
Posts: 134
Joined: Thu Aug 03, 2017 10:54 am

fourier vs lmodern : 'plus' sign doesn't show in tikz

Post by thomasb »

As far as I understood, lmodern is for text and fourier is for equations
Post Reply