I am wondering how can I ensure that an argument gets placed underneath \min when I use an align environment.
When I use math mode and write
\[
min_{x_1,\dots x_T}
\]
the {x_1,\dots x_T}
is placed directly underneath min.
However when I use an align environment and write
\begin{align*}
min_{x_1\dots x_T}
\end{align*}
the {x_1,\dots x_T}
is placed to the bottom left of \min
.
Best Answer
The macro is
\min
, notmin
.When you use
\min
in display mode (ie, within\[ \min_{<subscript>} \]
, or within thealign
environment), the subscript is placed underneath by default.When you use
\min
in inline math mode (ie, with$\min_{<subscript>}$
), then you need to specify\displaystyle
, or\limits
to get the subscript underneath.All four below produce: