
を使用すると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ページを参照