组合内的组合

组合内的组合

我想要以以下符号写出二项式系数 C(C(a, b),C(c, d)) :。

于是我尝试了一下\binom{\binom{a}{b}}{\binom{c}{d}}。但是,括号太小了,例如:

我的问题:如何使括号变大以匹配内部高度?

另外,如果我有 5 或 6 个值(如上所示),我该如何将它们等距地放在一行中?有没有更好的方法来排列这些值?

答案1

由于您已经用 破坏了行高 ( \baselineskip) \binom,因此您不妨用 来修复它\displaystyle

可以使用 s 来内联实现间距\hfill

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[\binom{\binom{a}{b}}{\binom{c}{d}}\]
$\binom{\binom{a}{b}}{\binom{c}{d}}$
$\displaystyle\binom{\binom{a}{b}}{\binom{c}{d}}$

\noindent$\displaystyle
\binom{\binom{a}{b}}{\binom{c}{d}}\hfill
\binom{\binom{a}{b}}{\binom{c}{d}}\hfill
\binom{\binom{a}{b}}{\binom{c}{d}}\hfill
\binom{\binom{a}{b}}{\binom{c}{d}}\hfill
\binom{\binom{a}{b}}{\binom{c}{d}}\hfill
$
\end{document}

在此处输入图片描述

答案2

应用在后台\combcomb使用的新宏(这是背后的基础)\genfrac\binom

\documentclass{article}


\usepackage{mathtools}


\newcommand{\combcomb}[4]{%
  \genfrac{(}{)}{0pt}{0}{\binom{#1}{#2}}{\binom{#3}{#4}}%
}

\begin{document}

$\combcomb{a}{b}{c}{d}$ $\combcomb{e}{f}{g}{h}$

\end{document}

在此处输入图片描述

相关内容