答案1
你可以\smash
,\substack
但是在这种情况下,我只会对aligned
环境使用不同的安排。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
F(M) = \bigcup_{\substack{x, y \in M\\ x \neq y}} \bigl\{ \{x,y\} \mid
\begin{aligned}[t]
& \text{long condition 1}, \\
& \text{long condition 2} \bigr\}
\end{aligned}
\]
\end{document}
还请注意使用\bigl\{
and\bigr\}
代替\big\{
and \big\}
。