I would like to put some text in math mode below a mathematical operator (or a symbol), similar to \substack in \sum, as the red text below the \max operator in the following image
How to do this?
I would like to put some text in math mode below a mathematical operator (or a symbol), similar to \substack in \sum, as the red text below the \max operator in the following image
How to do this?
Solved this for Inline mode by using $\underset{1 \leq j \leq n}{\max}$, however this approach requires the amsmath package.
You should place the expression in the subscript, as shown below. Most LaTeX books explain this. E.g.
\documentclass{article}
\begin{document}
\begin{itemize}
\item \textbf{Display mode}:
[\max_{1 \leq i \leq N}]
\item \textbf{Inline mode}: version without \verb!\limits! would look like (\max_{1 \leq i \leq N}), version with \verb!\limits! would look like(\max\limits_{1 \leq i \leq N}) inside a text.
\end{itemize}
\end{document}
Note how \limits command force the subscript under operator in inline mode (if you think you need \limits, think again — maybe the defaults look better after all! cf. this answer here on TeX.se).
If you find that the subscripted expression is too long and introduces excessive whitespace, you could use \smashoperator macro from the mathtools package, as in this post.
I would solve it like this:
\documentclass{scrartcl}
\usepackage{amsmath}
\begin{document}
\[
\max\limits_{1\leq j\leq n}
\]
\end{document}
As someone suggest above. We should use \underset command:
\underset{1\leqslant j\leqslant n}{max}.
\underset{\substack{\rho\to 0\ n\to\infty}}{l.i.m.}
(for my question above).
\substack suggestion, it allows multiple lines. I was using simply \\ but it didn't work.
– Yan King Yin
Dec 17 '22 at 08:39
$\operatorname{Res}\limits_{z=z_{0}}$will not give you the desired result, whilst$\underset_{z=z_{0}}{\operatorname{Res}}$will. – Alfredo Hernández Oct 23 '14 at 17:56\operatorname*is the way to go for\limits-compatible custom math operators. – Andras Deak Feb 21 '16 at 20:01