[Tex/LaTex] How I use LaTeX to write limit equations

math-operators

How can I use LaTeX code to write limit equations? I am mainly facing at the point where I am to assign the "x tends to" part.

Best Answer

You may use LaTeX to write the limit equations, without calling any extra packages. Using daleif's example in his comment:

enter image description here

%pdfLaTeX

\documentclass[margin=3mm]{standalone}

\begin{document}

$\lim_{x\to\infty}$\\[3cm]

$\lim\limits_{x \to \infty}$

\end{document}