Eine TeX-Mathematikschriftart für Helvetica Neue?

Eine TeX-Mathematikschriftart für Helvetica Neue?

Jemand besteht darauf,Helvetica Neue(Light) in einer neuen (Mathe-)Zeitschrift, obwohl ich davon abrate, da es weder Mathematik noch Kapitälchen unterstützt.

Können Sie mir jedenfalls eine TeX-Mathematikschriftart empfehlen, die mit dieser Schriftart möglichst gut aussieht?

Antwort1

newtxsfSie können das neue Paket verwenden :

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

Bildbeschreibung hier eingeben

verwandte Informationen