Math & ScienceLimit with multiline expression underneath

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
XXX
Posts: 2
Joined: Sat Jun 12, 2010 7:39 pm

Limit with multiline expression underneath

Post by XXX »

If I have limit with two variables x->x0 and y->y0, what is the command which let me right x->x0 under y->y0 and both under \lim? Is it possible in latex to right like that:

Lim
x->x0
y->y0

Recommended reading 2024:

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

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

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Limit with multiline expression underneath

Post by gmedina »

Hi,

you can use the \substack command:

Code: Select all

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\[
  \lim_{\substack{x\to a \\ y\to b}}f(x,y)
\]

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
XXX
Posts: 2
Joined: Sat Jun 12, 2010 7:39 pm

Re: Limit with multiline expression underneath

Post by XXX »

It works! thanks a lot:)
Post Reply