\documentclass{article}
\begin{document}
\begin{equation*}
\bigcup_{a \in \{\text{set that is very wide}\}} S_a
\end{equation*}
\end{document}
问题是这会产生:
我如何将 S_a 移到左边?
答案1
您可以使用以下\smashoperator命令mathtools:
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{equation*}
\smashoperator{\bigcup_{a \in \{\text{set that is very wide}\}}} S_a
\end{equation*}
\end{document}