26 Gennaio 2014 alle 19:23
#91854
::
PM” post=91426Salve, usando LuaLaTeX, ed avendo nel preambolo i seguenti pacchetti
`
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{unicode-math}
`Ho notato che il comando \mathbb produce font differenti da quelli prodotti dallo stesso comando eseguito compilando con LaTeX. Come faccio per ottere i font che ottenevo con LaTeX?
Grazie
Ne ottieni di simili con
`
\usepackage{unicode-math}
\setmathfont{Latin Modern Math}
\setmathfont[range=\mathbb]{TeX Gyre Termes Math}
`
Ottieni proprio gli stessi con
`
\usepackage{unicode-math}
\setmathfont{Latin Modern Math}
\setmathfont[range=\mathbb]{FreeSerif}
`
Ciao
Enrico