\min_{n}\Arrowvert x \Arrowvert_{1}
, but n is not under min. but beside it, like this min n. Why? 
\min_{n}\Arrowvert x \Arrowvert_{1}
, but n is not under min. but beside it, like this min n. Why? NEW: TikZ book now 40% off at Amazon.com for a short time.
\min_n
, n is written below \min
if you use it in displayed equations, but beside it if you use it within normal text. But you can change it using \displaystyle
for switching the style of the formula or \limits
for changing just the style of the operator.Code: Select all
\documentclass{article}
\begin{document}
Inline math, i.e. math within text: $\min_{n}\Arrowvert x \Arrowvert_{1}$
A displayed formula:
\[\min_{n}\Arrowvert x \Arrowvert_{1}\]
Inline math, but in a displayed style:
$\displaystyle\min_{n}\Arrowvert x \Arrowvert_{1}$
Inline math, only \verb|\min| in a displayed style, i.e. limits below:
$\min\limits_{n}\Arrowvert x \Arrowvert_{1}$
\end{document}
Code: Select all
\begin{eqnarray}
\begin{array}{ll}
\min_{n}\Arrowvert x \Arrowvert_{1}\\
subject~to~ y=Ax
\end{array}
\end{eqnarray}
eqnarray
, because it's obsolete, causes inconsistent spacing and other problems. Better use align
of NEW: TikZ book now 40% off at Amazon.com for a short time.