I am using Kile as my LaTeX editor. I have defined a star for DeclareMathOperator but it does show the behavior of \limits, the subscript appears only in the sides rather than below. But using maptop works
\item$\mathop{\inf}\limits_x$. The starred version of operator name is also not working as expected. Please tell me if i am missing something.
Here is my code:
\documentclass[a4paper,10pt]{article}
\usepackage[utf8x]{inputenc}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amsopn}
\DeclareMathOperator*{\argmax}{argmax} % argmax
\DeclareMathOperator*{\argmin}{argmin}
%opening
\title{Convex Optimization - Points to be clarified}
\author{Venkatesh}
\begin{document}
\section*{Convex sets theory}
\begin{enumerate}
\item what is a positive semi definite matrix and positive semdi definite cone $S_+^n = \{X \in S^n | X \succeq 0 \}$ ?
\item what is domain \textbf{dom} $f$ ?
\item$\mathop{\inf}\limits_x$
\item$\argmax{_c^b} f(b)$
\item$\operatorname*{rank}_v(x)$
\end{enumerate}
\end{document}
\argmax_{c^b}instead of\argmax{_c^b}. – Ian Thompson Apr 18 '12 at 12:51