I have the command \DoubleSpacing within the caption of many of my figures throughout my document. This command is provided by memoir.
...
\caption[]{\DoubleSpacing Here is a figure caption}
...
I would like to replace this command by some other command, say aux_command that I can alias to \DoubleSpacing or to a dummy command that does nothing (literally), at will, and in one single place. This would allow me to quickly turn on and off DoubleSpacing in the caption of my figures. How can I do that?
\def\DoubleSpecing{}will change the command to do nothing. – yannisl Mar 25 '12 at 22:57