数学子数组/子堆栈环境不起作用

数学子数组/子堆栈环境不起作用

我尝试使用以下代码片段使用子数组/子堆栈获取堆叠索引,但我没有看到符号下方的堆叠sum。这是我期望的输出类型,好输出

但这就是我得到的:

输出不佳

以下是代码:

\documentclass{report}
\usepackage{amsmath, amsfonts, amssymb}
\begin{document}
    \[
          \frac{\sum_{\begin{subarray}{l}\forall x \\
          \mathcal{D}(x)=\mathcal{D}_i\end{subarray}} \sum_{\substack{\forall
              y\in\Omega(x) \\
   \mathcal{D}(y)=\mathcal{D}_j}} 1}
    {\sum_{\forall x }\mathcal{D}(x)}
   \]
\end{document}

我应该怎么做才能正确堆叠?

答案1

\displaystyle您需要在分子和分母的开头添加指令。我还会\,在分子中的两个主要项之间添加(thinspace)。

在此处输入图片描述

\documentclass{report}
\usepackage{amsmath, amsfonts, amssymb}
\begin{document}
\[
   \frac{\displaystyle\sum_{\begin{subarray}{l}\forall x \\
                             \mathcal{D}(x)=\mathcal{D}_i\end{subarray}}  \, 
      \sum_{\substack{\forall y\in\Omega(x) \\ \mathcal{D}(y)=\mathcal{D}_j}} 1}
   {\displaystyle\sum_{\forall x }\mathcal{D}(x)}
\]
\end{document}

有关此主题的更多信息,你可能需要查阅帖子具有大元素的分数

相关内容