I want to merge \textdelta and \, into one command, called \tdelta.
Package: \usepackage[euler]{textgreek}
I know that I can use \let\tdelta\textdelta, but I also want a space after that (\,).
(following up on a suggestion I made in a comment...)
I want to merge
\textdeltaand\,into one command, called\tdelta.
I can suggest
\newcommand{\tdelta}{\textdelta\,}
\newcommand\tdelta{\textdelta\,}?\newcommand{\tdelta}{\textdelta \,}– am I missing something obvious?