In the Wikibook about LaTeX's section on dots, it's suggested that "Instead of using \ldots and \cdots, you should use the semantically oriented commands." The author then goes on to list amsmath's semantically oriented \dots commands: \dotsc, \dotsb, etc., which respectively stand for "dots with commas", "dots with binary operators/relations", etc.
But I was just thinking that if we wanted to be really semantically oriented, since when we write \dots what we actually mean is "ellipsis" or "et cetera", perhaps we should define a collection of \ellipsis commands like:
\newcommand*{\ellipsis}{\dots}
\newcommand*{\ellipsisc}{\dotsc} % "ellipsis with commas"
\newcommand*{\ellipsisb}{\dotsb} % "ellipsis with binary operators/relations"
etc.
or, since those commands were getting rather long, we could instead define a collection of \etc commands like:
\newcommand*{\etc}{\dots}
\newcommand*{\etcc}{\dotsc} % "et cetera with commas"
\newcommand*{\etcb}{\dotsb} % "et cetera with binary operators/relations"
etc.
While I find this quite satisfying with regards to being semantically sound, I worry that defining all of these new commands amounts to semantic overkill since I haven't seen anyone else rename the \dots commands. Am I taking semantic orientation too far?