在文章类中获取 Quattrocento 作为数学字体

在文章类中获取 Quattrocento 作为数学字体

在投影机中我可以做到这一点

\documentclass{beamer}
\usepackage{quattrocento}

\begin{document}
\begin{frame}
Quattrocento ${30\cdot40}$
\end{frame}
\end{document}

文本和数学字体都将以 Quattrocento 字体打印。

我如何在文章类中实现同样的效果?如果我这样做:

\documentclass{article}
\usepackage[sfdefault]{quattrocento}

\begin{document}

Quattrocento ${30\cdot40}$

\end{document}

仅更改了文本字体,而不更改数学

图片:

投影机

http://imgur.com/svyPgVM

文章

http://imgur.com/t1zeC7w

答案1

这就像加载包一样简单:

\documentclass{article}
\usepackage[sfdefault]{quattrocento}
\usepackage[italic]{mathastext}

\begin{document}

Quattrocento $30\cdot40+ab-c$

\end{document}

在此处输入图片描述

相关内容