I am using the following counter:
\newcounter{foo}
\newcommand\num{
\refstepcounter{foo}
\thefoo.}
Two (2) spaces are automatically inserted between the preceding word and the counter -- e.g., word \num shows up in the pdf file as word 1.
Is there a way to have just one space between a word and a counter? If possible, I'd like to avoid writing word\num and would prefer to write it like word \num

%at the end of line, e.g.,…\num{%and…foo}%. – Manuel Jul 09 '14 at 19:18