[Tex/LaTex] How to make the limit (mathematics) sign

math-modesymbols

I want to learn how to make the limit sign. For example, take 'Limit of f(x) as x approaches 2 is 5' , how to make this?

Best Answer

You are looking for \lim_{x \to 2} f(x) = 5. This has to be used in math mode which can be either inline mode (where the limit is placed as a subscript so that the inter line spacing of the paragraph is not perturbed):

enter image description here

or in display mode where the limits are placed underneath):

References:

Code:

\documentclass{article}

\begin{document}
With in line mode this is typeset as $\lim_{x \to 2} f(x) = 5$

\medskip
In display mode it is typset differently:
\[ \lim_{x \to 2} f(x) = 5 \]
\end{document}