Possible Duplicate:
Command for argmin or argmax?
How to put indices under "argmin" in: \operatorname{argmin}_{z} ?
For the sum we can do something like: \sum\limits_{z}, but it does not work for the argmin example.
EDIT MWE:
\begin{equation}
\label{myequation}
F =
\begin{cases}
n + b + 1 & \text{if $a \neq \emptyset$}\\
\tilde{z} = \operatornamewithlimits{argmin}_{\tilde{z}}\operatorname{dist}(z, \tilde{z}) & \text{otherwise}
\end{cases}
\end{equation}
Also, I have the formula inside a \begin{equation} ... \end{equation} bloc, and it seems that I can not put [ \operatornamewithlimits{argmin}_z ] inside this bloc !
– user995434 Jul 08 '12 at 16:21\DeclareMathOperator*{\argmin}{argmin}and using\argminin the body of the document is the best strategy. In your case the limits are not put under "argmin" becausecasestypesets its lines in textstyle. Loadmathtoolsand use itsdcasesenvironment. – egreg Jul 08 '12 at 16:30\displaystylebefore the\operatornamewithlimits'. thecasesenvironment is based onmatrix, which assumes\textstyle` by default. this isn't very well documented, so i'll add a note to improve the situation the next time the documentation is updated. – barbara beeton Jul 08 '12 at 16:41