
를 사용할 때 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페이지를 참조하세요.