I would like to use \nolimits on every operator like \sum, \min, \max, etc. in display-mode equations, as it allows me to save a lot of space. How can I achieve this without having to manually write it everywhere?
Asked
Active
Viewed 849 times
1
Filippo Bistaffa
- 753
1 Answers
3
If you use amsmath, then just load it as
\usepackage[nosumlimits,nonamelimits]{amsmath}
Complete example
\documentclass{article}
\usepackage[nosumlimits,nonamelimits]{amsmath}
\begin{document}
\[
\sum_{k=1}^n k\ne\max_{1\le k\le n}\{k\}
\]
\end{document}
egreg
- 1,121,712

;-)See also https://tex.stackexchange.com/questions/159820/comment-sty-and-utf8-encoding#comment365136_159820 – egreg May 16 '17 at 08:58