答案1
您可以更正确地定义组合。使用您的代码,TeX 无法识别下标和上标。
您也不需要猜测较短的部分是什么。
\documentclass{article}
\makeatletter
\NewDocumentCommand{\textsubsuper}{mm}{%
\@textsubsuper{\selectfont #1}{\selectfont #2}%
}
\newcommand{\@textsubsuper}[2]{%
{\m@th\ensuremath{%
_{\mbox{\fontsize\sf@size\sf@size #1}}%
^{\mbox{\fontsize\sf@size\sf@size #2}}%
}}%
}
\makeatother
\begin{document}
\textbf{Friends\textsubsuper{\itshape Concentration}{\itshape Ritual}}
\end{document}