I'm using Latex to create equations and it is rendered on a website using Mathjax.

When multiple 'lim' comes in the same line, the second 'lim' is not displayed properly as shown in the image.

Following is the latex code for the equation. How can the issue be fixed?

\begin{align}\sf\:We\: have \:\lim_{x\rightarrow a}\frac{x^{n}-a^{n}}{x-a}&=na^{n-1}\\ \therefore \lim_{x\rightarrow 2}\frac{x^{100}-2^{100}}{x^{77}-2^{77}}&= \lim_{x\rightarrow 2}\frac{x^{100}-2^{100}}{x-2}\times \frac{1}{\lim_{x\rightarrow 2}\frac{x^{77}-2^{77}}{x-2}}\\ &=\frac{100\times 2^{99}}{77\times 2^{76}}\\ &=\frac{100}{77}\times 2^{23}\end{align}

Screenshot of the equation written using latex and rendered using mathjax

Thanks,

LS Developer

link|improve this question

50% accept rate
feedback

2 Answers

up vote 0 down vote accepted

The placement of the limits on an operator like 'lim or \sum is controlled by the "style" that TeX is using. In "displaystyle", the limits are placed above and below the operator, while in "textstyle" (and the script styles" they are placed to the right (as in your boxed example). In-line equations are in textstyle, while displayed equations begin in displaystyle. By the style isn't constant within an equation. In displaystyle, the numerator and denominator of a fraction will be typeset in textstyle, not displaystyle, which is why you are seeing the limits to the right of the operator. That is the correct behavior.

To get the limits below the operator when you are not in displaystyle, use \limits after the operator name. E.g.,

\frac{1}{\lim\limits_{x\rightarrow 2}\frac{x^{77}-2^{77}}{x-2}}

should produce the result you want.

link|improve this answer
feedback

That looks like a perfectly acceptable way of typesetting the equation to me. I suppose you could try to force LaTeX to typeset the x->2 under the lim by using \stackrel or something like that.

link|improve this answer
Right.\stackrel works.A better one I found is \displaystyle{}. – LS Developer Feb 23 at 9:23
The \stackrel macro is really the wrong approach. It's true that \displaystyle works, but you want {\displaystyle ...} not \displaystyle{...} since \displaystyle is a switch, not a macro taking an argument. The best choice, IMHO, is to use \limits with the \lim since that is exactly what it is designed for. – Davide Cervone Feb 23 at 18:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.