mathtools
package we can align limits of consecutive math operators vertically.Do you have an example how to do that?
mathtools
package we can align limits of consecutive math operators vertically.Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\documentclass[border=10pt,preview]{standalone}
\usepackage{dsfont}
\begin{document}
\[
\lim_{n\to\infty} \sup_{x\in\mathds{R}} f_n(x^2)
< n \Big(\sum_{x\in\mathds{R}, n\in\mathds{N}}
\big| f_n(x^2) \big| \Big)
\]
\end{document}
mathtools
package, use the \adjustlimits
command right before the \lim
operator, insert \smashoperator
to remove that big white space before \sum
, and change x^2
to \cramped{x^2}
to slightly lower the exponent, at both places:Code: Select all
\documentclass[border=10pt,preview]{standalone}
\usepackage{dsfont}
\usepackage{mathtools}
\begin{document}
\[
\adjustlimits\lim_{n\to\infty} \sup_{x\in\mathds{R}}
f_n(\cramped{x^2})
< n \Big( \smashoperator{\sum_{x\in\mathds{R},
n\in\mathds{N}}}
\big\lvert f_n(\cramped{x^2}) \big\rvert \Big)
\]
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis