Possible Duplicate:
Spacing around \left and \right
I'm having some problems with writing down an equation in LaTeX. It's only a minor issue regarding appearance, but I'm kind of a perfectionist. And isn't that why we use LaTeX anyway?
Consider the following equation:
\begin{equation}
f(x)=\exp[-\frac{x}{2}]
\end{equation}
The brackets following the exponential indicator \exp are closely placed next to "exp", clearly indicating that it's the variables for the exponential function. However, since the argument of the exponential function contains a fraction, it's appropriate to resize the brackets. So I let the brackets be resized automatically according to:
\begin{equation}
f(x)=\exp\left[-\frac{x}{2}\right]
\end{equation}
Indeed, the brackets are now automatically appropriately sized. However, for some reason, extra white space appears between "exp" and the first "[" bracket. It now looks like the function "exp" and the term in brackets are two independent components.
I haven't found a way to solve this issue. I'm quite surprised that a system like LaTeX, known for its excellent equation capabilities, exhibits this behavior.

\!on the outside which inserts a negative\thinspaceto reduce the white space left by the\leftand\rightdelimiter pair. – Werner Jan 12 '12 at 00:11