I want to be able to write text as 'raised to power' without mathmode. E.g. how can I write this without textmode?
$\text{Some text}^{change}$
You have to use:
Some text\textsuperscript{change}
MWE:
\documentclass{article}
\begin{document}
Some text\textsuperscript{change}
\end{document}