I am wondering how I can write the limit of a function in text so that that portion x approaches b is under the limit, not next to it.
Code: Select all
$\lim_{x\to b} f(x)$
Code: Select all
\[ \lim_{x\to b} f(x)\]
Code: Select all
$\lim_{x\to b} f(x)$
Code: Select all
\[ \lim_{x\to b} f(x)\]
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
$\displaystyle\lim_{x\to b} f(x)$
\limits
, which however has the same problem with interline spacing.Code: Select all
\documentclass{article}
\begin{document}
Text and some more text to see how it fits inline. Text and some more text to
see how it fits inline. Text $\lim_{h\to0}\frac{f(x_0+h)-f(x)}{h}$ and some
more text to see how this fits inline. Text and some more text to see how it
fits inline.
Text and some more text to see how it fits inline. Text and some more text to
see how it fits inline. Text $\displaystyle\lim_{h\to0}\frac{f(x_0+h)-f(x)}{h}$
and some more text to see how this fits inline. Text and some more text to see
how it fits inline.
Text and some more text to see how it fits inline. Text and some more text to
see how it fits inline. Text $\lim\limits_{h\to0}\frac{f(x_0+h)-f(x)}{h}$ and
some more text to see how this fits inline. Text and some more text to see how
it fits inline.
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.