\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? Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
\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 Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis