答案1
您可以使用软件包\smashoperator
提供的带有选项的宏来实现所需的效果。这会通知 LaTeX,应允许放在求和符号下方的材料与放在求和符号后面的材料之间有重叠。mathtools
[r]
\documentclass{article}
\usepackage{mathtools} % for "\smashoperator" macro
\setlength\textwidth{3in} % just for this example
\begin{document}
No overlap on either side
\[
y = \sum_{x \in A[1,\dots,i-1]} x
\]
\bigskip
Overlap on right-hand side only
\[ % note the option "[r]" in the following line
y = \smashoperator[r]{\sum_{x \in A[1,\dots,i-1]}} x
\]
\bigskip
Overlap on both sides
\[
y = \smashoperator{\sum_{x \in A[1,\dots,i-1]}} x
\]
\end{document}