This is a follow up question regarding the limits in \lim command and mathtools package. To begin with how can I make the limits to start at the beggining of the lim symbol and not ahead of it? Meaning the lim symbol and the limits not to be centered.

Also in the mathtool package if I use the scale option then the limits are scaled but as it seems to me around a point and so as the scale becomes smaller the larger the vertical gap between the limits and the lim symbol becomes. How can I fix that so that the vertical space will remail the same as the original in the lim command? And why is that happening?

This is a the code I used to try some cases, which belongs to Peter Grill who posted it to answer a previous question of mine.
\documentclass[12pt]{article}
\usepackage{mathtools}
\usepackage{graphicx}
\usepackage{calc}
% http://tex.stackexchange.com/questions/60453/reducing-font-size-in-equation/
\newcommand*{\Scale}[2][4]{\scalebox{#1}{$#2$}}%
\newcommand*{\Resize}[2]{\resizebox{#1}{!}{$#2$}}%
\begin{document}
\noindent
Without \verb|\mathclap|:
\[ \lim_{n\to +\infty}x(n) \]
But with \verb|\mathclap|::
\[ \lim_{\mathclap{n \to +\infty}}x(n) \]
Using \verb|\scriptstyle| to resize:
\[ \lim_{\scriptscriptstyle n \to +\infty} x(n) \]
Using \verb|\Scale|
\[ \lim_{\Scale[0.5]{n \to +\infty}} x(n) \]
Using \verb|\Resize|
\[ \lim_{\Resize{\widthof{$\lim{}$}}{n \to +\infty}} x(n) \]
\end{document}



\limcommand and the function? Also what do you mean about the subscripts and superscripts? – Adam Apr 15 '14 at 19:49\lim_{\mathmakebox[\dimen0][l]{\kern\dimen2 #2}}– egreg Apr 15 '14 at 20:25