Helvetica Neue 的 TeX 数学字体?

Helvetica Neue 的 TeX 数学字体?

有人坚持使用新海尔维提卡(Light)在新的(数学)期刊中,尽管我不建议这样做,因为它不提供数学或小型大写字母支持。

无论如何,您能否建议使用与该字体看起来尽可能好的 TeX 数学字体?

答案1

您可以使用新newtxsf包:

\documentclass{article}
\usepackage{fontspec}
\usepackage{newtxsf}

\setmainfont{Helvetica Neue}[Scale=0.9]

\AtBeginDocument{%
  \DeclareMathSymbol{0}{\mathalpha}{operators}{`0}%
  \DeclareMathSymbol{1}{\mathalpha}{operators}{`1}%
  \DeclareMathSymbol{2}{\mathalpha}{operators}{`2}%
  \DeclareMathSymbol{3}{\mathalpha}{operators}{`3}%
  \DeclareMathSymbol{4}{\mathalpha}{operators}{`4}%
  \DeclareMathSymbol{5}{\mathalpha}{operators}{`5}%
  \DeclareMathSymbol{6}{\mathalpha}{operators}{`6}%
  \DeclareMathSymbol{7}{\mathalpha}{operators}{`7}%
  \DeclareMathSymbol{8}{\mathalpha}{operators}{`8}%
  \DeclareMathSymbol{9}{\mathalpha}{operators}{`9}%
}

\begin{document}

Some text and a formula $a+b=c$ and a display
\[
\log x=\int_{1}^{x}\frac{1}{t}\,dt
\]
that, together with $1234567890$ ends the paper.


\end{document}

在此处输入图片描述

相关内容