選擇一個好的數學字體與喬治亞文字字體一起使用

選擇一個好的數學字體與喬治亞文字字體一起使用

我的問題與文字和數學字體的組合有關。我非常喜歡類似喬治亞州的“密集”和“不那麼細”的字體。 AMS出版的書好像也用類似的。

我的問題是我找不到合適的數學字體來適合文字:newtxmath對於喬治亞州來說似乎太細了,它更適合 Times New Roman。我嘗試過使用STIX Math Two,但該\bm軟體包無法使用它。此外,mathbb, mathcal樣式mathscr字母在newtxmath.

我正在尋找至少一個以下問題的解決方案:

  • 我可以以某種方式從包中加載我喜歡的符號newtxmath並使其bm工作嗎?
  • 什麼字體在 Georgia 中看起來不錯,並且對數學符號有良好的支持,適當的間距並且可以與其他包一起使用(最可取的 - 可通過unicode-math包加載)?

一些例子:

新TX數學(不錯mahtbb,但字體太細了) 在此輸入影像描述

西特(有些符號比較難看) 在此輸入影像描述

STIX 數學二(很好,但mathbb很奇怪) 在此輸入影像描述

MWE 包含公式和文字的簡短範例。我在 MWE 中包含了一些有時與字體載入內容衝突的套件。我使用LuaLaTeX來編譯

\documentclass[a4paper,10pt,openany]{book}
\usepackage{geometry}
\geometry{
margin=1in
}
%


\usepackage{mathtools}

\usepackage{amsthm}
\usepackage{thmtools}

\usepackage{wasysym}
%\usepackage{newtxmath}
%\usepackage[notext,not1,notextcomp]{stix}
%\let\coloneqq\relax
%\let\Coloneqq\relax
%\let\eqqcolon\relax
\usepackage[math-style=ISO]{unicode-math}
\setmathfont{STIX Two Math}
%\setmathfont{XITS Math}

\usepackage{bm}


\usepackage{mathrsfs}

\usepackage{lipsum}

\usepackage[utf8]{inputenc}
\usepackage{polyglossia}

\defaultfontfeatures{Ligatures=TeX}

\setmainfont{Georgia}

\setmainlanguage{english}

\DeclareFontFamily{U}{skulls}{}
\DeclareFontShape{U}{skulls}{m}{n}{ <-> skull }{}
\newcommand{\skull}{\text{\usefont{U}{skulls}{m}{n}\symbol{'101}}}

%

\begin{document}

If $\omega$ is a positive linear functional on a $C^{\ast}$-algebra~$A$,
then we can construct a unique (up to unitary equivalence)
representation~$\pi_\omega$ of algebra~$A$ in some Hilbert
space~$H_\omega$ over field of scalars $\mathbb{C}$ and
a vector~$\xi_\omega$ such that
    $$
    \omega(a)=\left(\pi_{\omega(a)}\xi_\omega,\,\xi_\omega\right).
    $$

\end{document}

相關內容