I create a command,
\newcommand{\cmd}{b}
but when I use this command
a\cmd{}c
What I get is
a b c
but what I want is
abc
How can I remove two blanks?
I create a command,
\newcommand{\cmd}{b}
but when I use this command
a\cmd{}c
What I get is
a b c
but what I want is
abc
How can I remove two blanks?
a b c? – Alain Matthes Jul 04 '12 at 16:35%in macro definitions?. – Caramdir Jul 04 '12 at 17:45\newcommand{\cmd}{ b }. This would yield the result that you describe that you are getting. – Peter Grill Jul 04 '12 at 17:49