答案1
答案2
我只需使用\llap
;\scriptspace
即可避免逗号完全位于“u”下方。此外,还必须恢复空间因素。
我建议\mathit{cpu}
,因为这可能不是三个量的乘积。
\documentclass{article}
\newcommand{\ucomma}{%
\leavevmode % for safety
\llap{,}\spacefactor\sfcode`,
\space
}
\begin{document}
$T^{\mathit{cpu}}$, text
$T^{\mathit{cpu}}$\ucomma text
$T^{cpu}$, text
$T^{cpu}$\ucomma text
\end{document}
答案3
这?
\documentclass[10pt,journal,compsoc]{IEEEtran}
\usepackage{amsmath}
\usepackage[table]{xcolor}
\begin{document}
$T^{cp\underset{'}{u}}$
\end{document}
如果要将逗号放在与文本同一行,可以使用负空格。
\documentclass[10pt,journal,compsoc]{IEEEtran}
\usepackage{amsmath}
\usepackage[table]{xcolor}
\begin{document}
$T^{cpu}$\hspace{-3pt}, text
\end{document}