Code: Select all
\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
This example (bad) :
\begin{equation}
y(x) = - x - x.
\end{equation}
Or this one (good) :
\begin{equation}
y(x) = -\: x - x.
\end{equation}
Or this one (bad) :
\begin{equation}
y(x) = -\ x - x.
\end{equation}
\end{document}
x
. The first equation is clearly wrong. The second version is my solution. The third equation is wrong (too much space after the first minus sign).IMHO, the spacing after the first minus sign should be exactly as the second minus sign.
What should be the "right" spacing? What is the "right" command? Should I stay with
-\:
? The options -\,
and -\;
doesn't seem to be the right spacing.