我想要以以下符号写出二项式系数 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}