Take that standard integral for example :
Code: Select all
\int_A^B f(x) \, dx
Code: Select all
\int_A^B f(x) \, dx
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{article}
\usepackage[intlimits]{mathtools}
\begin{document}
\[\underset{\text{path 1}}{\int_A^B} f(x) \, dx\]
\[\int_{\substack{A \\\text{path 1}}}^B f(x) \, dx\]
\[\int_{\mathclap{\substack{A \\\text{path 1}}}}^B f(x) \, dx\]
\end{document}
intlimits
option to mathtools. You really should take a look at Code: Select all
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[\underset{\text{path 1}}{\int_A^B} f(x) \, dx\]
\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