I defined a macro but I found the word spacing is gone. Am I missing something?
\documentclass[11pt, oneside]{article}
\newcommand{\abc}{$abc$}
\newcommand{\abcSpace}{$abc$ }
\begin{document}
Word spacing here $abc$ is correct.
Word spacing here \abc is incorrect.
Why do I need to define macro like this \abcSpace in order to have a space?
But within brackets, this space again is not what I want: (\abcSpace).
\end{document}
\abc\ iswhen you want a space. – egreg Jun 06 '13 at 17:11\abc) are ignored. That's the way it is. – egreg Jun 06 '13 at 17:14xspacewhich adds space automatically whenever necessary. – Hasan Zakeri Jun 06 '13 at 17:21