[Tex/LaTex] A TeX math font for Helvetica Neue

fontsmath-mode

Somebody insists for using Helvetica Neue (Light) in a new (math) journal, though I advise against it, because it doesn't provide math nor small caps support.

Anyway, could you advise as TeX math font that looks as good as possible with this font?

Best Answer

You can use the new newtxsf package:

\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}

enter image description here

Related Question