数学论文写作常用字体

数学论文写作常用字体

我正在写数学论文,但我对所用模板的默认字体不满意。请告诉我论文中使用的常见字体以及这些字体的 latex 命令。

答案1

我喜欢这个组合:

\usepackage[T1]{fontenc}
\usepackage{kpfonts}%  for math    
\usepackage{libertine}%  serif and sans serif
\usepackage[scaled=0.85]{beramono}%% mono

答案2

我将此组合与 LuaLaTeX 一起使用。

\usepackage{unicode-math}
\usepackage{libertine}
\setmathfont{Latin Modern Math}
\setmathfont[range=\mathit/{latin,Latin,num,Greek,greek}]{Linux Biolinum O Italic}
\setmathfont[range=\mathup/{latin,Latin,num,Greek,greek}]{Linux Biolinum O}
\setmathfont[range=\mathbfup/{latin,Latin,num,Greek,greek}]{Linux Biolinum O Bold}
\setmathfont[range={\mathrm,0048-0057}]{Linux Biolinum O}

相关内容