[Tex/LaTex] Using a unicode-math font that looks like computer modern roman

blackboard;latin-modernmath-modeunicode-math

I'm looking for a math font that works with the unicode-math package that looks just like computer modern roman. I found the latin modern roman font quite good, but they have a ℝ symbol which looks really ugly imo.

enter image description here

Is there a unicode math font that looks just like computer modern roman ? Or could I maybe replace the bbold symbols ?

Best Answer

TeX Gyre Termes Math has blackboard bold letters similar to the amsfonts ones:

\documentclass{article}
\usepackage{unicode-math}
\setmathfont[range=\mathbb]{TeX Gyre Termes Math}

\begin{document}
$abc\mathbb{R}\mathbb{Q}\mathbb{N}$
\end{document}

enter image description here

Here's the result if XITS Math is used intead of Termes:

enter image description here

Just take your pick; you can experiment also with TeX Gyre Pagella Math or Asana Math.

Related Question