How can I define my own shorthand command, but making sure that the spacing afterwards is correct?
\newcommand{\abc}{\textsc{abc}} produces 'ABC,' but has the problem 'ABCmoretexthere' (i.e. no space before the next word).
Vice versa
\newcommand{\abc}{\textsc{abc} } produces
'ABC moretexthere' but has the problem 'ABC ,' (i.e. one space before the comma).
How can I make both work?