不使用数学模式提升文本

不使用数学模式提升文本

我希望能够在不使用数学模式的情况下以“幂”的形式编写文本。例如,如何在不使用文本模式的情况下编写此代码?

$\text{Some text}^{change}$

答案1

Some text\textsuperscript{change}

答案2

你必须使用:

Some text\textsuperscript{change}

梅威瑟:

\documentclass{article}

\begin{document}
Some text\textsuperscript{change}
\end{document}

结果

相关内容