我如何将 newtxttext 上级重置为“正常”/未缩放的大小?

我如何将 newtxttext 上级重置为“正常”/未缩放的大小?

使用时newtxtext,上级(例如,用于脚注)会稍微缩放(根据文档)。但是,该mhchem包在化学公式中生成的下标/上标与数学模式样式相匹配,这会导致文本中出现不一致的外观,而这正是我想要避免的。有没有办法“重置”上级newtxtext以匹配其他上级?感谢您的帮助。

梅威瑟:

\documentclass{article}

\usepackage{newtxtext}
\usepackage{newtxmath}
\usepackage[version=4]{mhchem}

\begin{document}

Footnote.\footnote{hi} Another one.\footnote{hello} \ce{Br2} and \ce{CO3^{2-}}

\begin{equation}
F = k_{\textnormal{e}}\frac{q_1q_2}{r^2}
\end{equation}

\end{document}

结果:

在此处输入图片描述

答案1

我想这就是你要找的

\documentclass{article}
\usepackage[defaultsups=true]{newtxtext}
\usepackage{newtxmath}
\usepackage[version=4]{mhchem}

\begin{document}

Footnote.\footnote{hi} Another one.\footnote{hello} \ce{Br2} and \ce{CO3^{2-}}

\begin{equation}
F = k_{\textnormal{e}}\frac{q_1q_2}{r^2}
\end{equation}

\end{document}

请参阅文档第 3 页

相关内容