Is there a way to define a command in a way, that a possible subsequent subscript is hidden? something like
\newcommand{\mycommand}[1]{#1\nosubscript}
analogously to math operators and \limit if i want the subscript below.
The background is, that I want to be able to define commands for beamer with overlays, that do not show the subscripts at all on specific slides. I try to avoid having to include the subscripts as parameters of the commands.
What I would like to achieve, is for example a redefined command \underbrace with an overlay specification, such that
$\underbrace<3>{x < 0}_{x \text{ negative}}$
will display the underbrace including its subscript only at on specified overlays, and just x < 0 otherwise.


\xunderbrace<3>{x<0}{x \text{ negative}}is easier to implement and as good to input. – egreg Jun 21 '12 at 13:45