I was wondering if anyone know make a command for raisebox subscript? This question asks how to make the subscript part...here I want to make the command shorter by having a macro do the work rather than having to type out the whole command each time.
some\raisebox{-.4ex}{\scriptsize thing}
comes out as
something
I thought something like
\newcommand{\mysubscript}[1]{\raisebox{-.4ex}{\scriptsize #1}}
would work, but unfortunately it only prints the first letter of the argument
some\mysubscript[thing]{}
something
Any thoughts?

\usepackage{fixltx2e}, you have available\textsubscript:some\textsubscript{thing}– egreg Jun 24 '13 at 13:49\mysubscriptis incorrect. Trysome\mysubscript{thing}. – Werner Jun 24 '13 at 13:52