Let's say I want to write N^{eT}, but have N^e as a predefined command \Ne. Thus, I want to append the character T to the superscript of \Ne. Is this possible?
(Note that I don't want to write {\Ne}^T, since that will result in the T being one level above the e. This was adressed in Trick LaTeX into doing double superscripts by the way)

\def\Ne#1{$N^{e#1}$}is acceptable in your case? (usage: \Ne T) – guillem Apr 19 '12 at 14:46$\Ne{}^T$(maybe putting it into a box to prevent a break betweeneandT)? – Stephen Apr 19 '12 at 18:08