newtxtext の上辺を「通常」/スケールなしのサイズにリセットするにはどうすればよいでしょうか?

newtxtext の上辺を「通常」/スケールなしのサイズにリセットするにはどうすればよいでしょうか?

を使用するとnewtxtext、上付き文字 (たとえば、脚注に使用される) は (ドキュメントに従って) 少し拡大縮小されます。ただし、パッケージはmhchem化学式に数式モードのスタイルに一致する下付き文字/上付き文字を生成するため、テキスト内の外観に一貫性がなくなり、これを回避したいです。上付き文字をnewtxtext他の文字と一致するように「リセット」する方法はありますか? ご協力をお願いします。

MWE:

\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ページを参照

関連情報