Is there any way to make the symbols
\leq
, \simeq
etc to be shown with a sans-serif font and also a little bit smaller?When I put them in math mode as
$\leq$
and $\simeq$
, they don't "match" with my text font, because they are not sans-serif.When I put them in my code with copy/paste from Word, they look fine.
You would say that with copy/paste from Word I could have solved my problem, but as you see in example 6, the symbol ≃ does not appear correctly.
My MWE:
Code: Select all
\documentclass[a4paper,11pt,openright]{book}
\usepackage{fontspec}
\setmainfont[Kerning=On,Mapping=tex-text]{Myriad Pro}
\begin{document}
Examples: \\
1. Α $\leq$ B \\
2. A ≤ B \\
3. C $<$ D \\
4. C < D \\
5. E $\simeq$ F \\
6. E ≃ F
\end{document}