lualatex 中数学模式中的 Lato 字体

lualatex 中数学模式中的 Lato 字体

是否可以使用 Lato 字体(http://www.latofonts.com/lato-free-fonts/)在数学模式中?(或类似的字体)我试过

\documentclass[11pt]{article}

\usepackage{fontspec}
\usepackage{unicode-math}
\setmainfont{Lato Light}

\usepackage{unicode-math}
\setmathfont{Lato}
% \setmathfont[range=\mathup]  {Lato Light}
% \setmathfont[range=\mathbfup]{Lato Bold}
% \setmathfont[range=\mathbfit]{Lato Bold Italic}
\setmathfont[range=\mathit]  {Lato Light Italic}

\begin{document}

some math

\begin{equation}
    \lim_{a\rightarrow \infty} f(a)\alpha = \sum_{i=0} g_{i} \sqrt{h_{i}}
\end{equation}

\end{document}

但是求和符号看起来太小,并且平方根符号很乱。

我也尝试过使用pdflatexmathastext包,但它不能很好地处理希腊字母或数学符号。

相关内容