Math & ScienceTwo line under \inf

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
avidanium
Posts: 12
Joined: Mon Oct 12, 2009 10:49 pm

Two line under \inf

Post by avidanium »

Hello,

I have the following line:

$$\mathbf{h}_{se}(X)=\inf_{\pi:Y\rightarrow X\,\, \mathrm{symbolic}\,\mathrm{ext.}}
\mathbf{h}_{top}(Y)$$

I would like

\mathrm{symbolic}\,\mathrm{ext.}

to appear one line below

\pi:Y\rightarrow X

I tried using \\. However it doesn't work. Any help would be grealy appreciated!

Thank you.

Ron

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Two line under \inf

Post by Stefan Kottwitz »

Hi Ron,

welcome to the board!
Use \substack of amsmath, and \[ ... \] instead of $$ ... $$:

Code: Select all

\documentclass[a4paper,10pt]{article}
\usepackage{amsmath}
\begin{document}
\[
 \mathbf{h}_{se}(X)=\inf_{\substack{\pi:Y\rightarrow X\\
    \mathrm{symbolic}\,\mathrm{ext.}}}\mathbf{h}_{top}(Y)
\]
\end{document}
Stefan
LaTeX.org admin
avidanium
Posts: 12
Joined: Mon Oct 12, 2009 10:49 pm

Re: Two line under \inf

Post by avidanium »

Thanks! It works!
Post Reply