如何使用 notomath 默认将大写数学希腊字母变为斜体?

如何使用 notomath 默认将大写数学希腊字母变为斜体?

对于 Moodle 插图,我使用包noto。但是,我希望大写希腊字符默认为斜体,符合 ISO 80000 的要求。目前我只能使用命令进行斜体处理\mathit

我使用的其他软件包(newtxminionpro)有相应的选项,但文档中没有这方面的信息noto。基本上,我希望大写希腊字母的行为与小写希腊字母相同,用 拉直\up

\documentclass{standalone}
\usepackage[sfdefault]{notomath}

\begin{document}
$\alpha \upalpha \Phi \upPhi \mathit{\Phi}$
\end{document}

在此处输入图片描述

答案1

notomath是基于newtx

\documentclass{article}
\usepackage[sfdefault,slantedGreek]{notomath}

\begin{document}

$\alpha \upalpha \Phi \upPhi \mathit{\Phi}$

\end{document}

在此处输入图片描述

答案2

\up*表示直立字符,而不是大写字符。

例如大写字母 alpha 为 A;大写字母 beta 为 B;而 σ ( \sigma) 的大写形式为 Σ ( \Sigma)。因此,并非每个希腊字母都有独特的大写形式。有关详细列表,请参阅以下链接中的表格:https://www.overleaf.com/learn/latex/List_of_Greek_letters_and_math_symbols#Greek_letters

为了获得一致的结果,您可以考虑使用textgreek软件包。在这种情况下,\textalpha\textAlpha将为您提供所需的结果。

相关内容