Math & Scienceputting things under each other

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
tomasb47
Posts: 1
Joined: Sun Jan 27, 2019 11:17 am

putting things under each other

Post by tomasb47 »

Dear All,

If I write $$\sup_y$$, Latex will produce a formula with "y" centered under the text string "sup".
Is there any way I can write a formula replacing the string "sup" by some
other string, for example by "maximize"? I can of course write $$\max_y$$
but I really want the string to be "maximize" and/or "minimize", and I want "y" to be centered under "maximize".
If I write $$\mbox{maximize}_y$$ then "Y" will only be a subscript. I cannot use $$\stackrel$$ since then I will
get the "y" above "maximize", and if I change the order then "maximize" will be out of line (above the main text line).
Hoping for help
/Tomas Bjork

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10359
Joined: Mon Mar 10, 2008 9:44 pm

putting things under each other

Post by Stefan Kottwitz »

Hi Tomas,

welcome to the forum!

You could use \DeclareMathOperator* of amsmath:

Code: Select all

\documentclass{article}
\usepackage{amsmath}
\DeclareMathOperator*{\maximize}{maximize}
\begin{document}
$$\maximize_y$$
\end{document}
operator.png
operator.png (5.5 KiB) Viewed 3250 times
Stefan
LaTeX.org admin
Post Reply