答案1
我建议你分别用和替换自动调整大小指令\left
和。更好的方法是考虑\right
\Bigl
\Bigr
不是使用花括号来表示手头的表达式。通过指令“紧密排列”数学列表中的元素\smashoperator
(参见下面的第三项)也可能是一个好主意。
另一个问题是:使用\colon
in a\substack
似乎会导致一些令人不快的间距问题 - 请参阅下面的前两个术语。使用{:}
Instead of \colon
- 请参阅下面的第三个术语 - 可以解决间距问题。
\documentclass{article}
\usepackage{mathtools} % for \smashoperator macro
\begin{document}
\begin{align*}
&\max_{y\in Y}
\left\{
\sum_{\substack{x\in X\colon \\ f(x) = y}} g(x,y)
\right\} \\[2\jot]
&\max_{y\in Y}
\Bigl\{
\sum_{\substack{x\in X\colon \\ f(x) = y}} g(x,y)
\Bigr\} \\[\jot]
&\max_{y\in Y}
\smashoperator{\sum_{\substack{x\in X{:} \\ f(x) = y}}} g(x,y)
\end{align*}
\end{document}