如何將 newtxtext 重置為“正常”/未縮放大小?

如何將 newtxtext 重置為“正常”/未縮放大小?

使用 時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 頁

相關內容