How to define a macro, say \pretextsuperscript, to get a presuperscript ahead a word in text mode?
Just simply write \textsuperscript{2}hormone and \textsuperscript{2}population is incorrect. Why say that you can see from
\usepackage{mathtools}
\begin{document}
$\prescript{2}{}{h}$ $\prescript{2}{}{p}$
\end{document}
The prescript (in former sample is "2") should be vertically adjusted with the first letter of the argument of prescript. Also, the prescript should be upshape. I found the \prescript can only be used in math mode.
