1

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}$
WorldH
  • 21

2 Answers2

2
Some text\textsuperscript{change}
Bernard
  • 271,350
2

You have to use:

Some text\textsuperscript{change}

MWE:

\documentclass{article}

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

The result

Romain Picot
  • 6,730
  • 4
  • 28
  • 58