LaTeX 中的多重集表示法
有谁知道如何在 LaTeX 中制作(好看的)双括号多集表示法,即类似 (\binom{n}{k})
的东西,其中有两个外括号而不是二项式中的 1 ?您可以在 http://en.wikipedia.org/wiki/Multiset 在带有双括号的“多重集系数”标题下。
在维基百科中,他们将其排版为:
\left(\!\!{n\choose k}\!\!\right)
但是,尽管这对于数学模式下的 LaTeX 效果很好,但对于内联方程,外括号变得比内括号大得多。
我也尝试过使用
\genfrac{((}{))}{0pt}{}{n}{k}
,但双括号有错误。
我在文档中也使用了 \binom
,因此我希望 \binom
和 \multiset
的括号大小相似。
Does anyone know how to make (nice looking) double bracket multiset notation in LaTeX, i.e something like (\binom{n}{k})
where there are two outer brackets instead of 1 as in binomial? You can see an example of what I mean in http://en.wikipedia.org/wiki/Multiset under the heading "Multiset coefficients" with the double brackets.
In Wikipedia they typeset it as:
\left(\!\!{n\choose k}\!\!\right)
but although this works well for LaTeX in maths mode, with inline equations the outer bracket becomes much larger than the inner bracket.
I have also tried using
\genfrac{((}{))}{0pt}{}{n}{k}
but it has an error with the double brackets.
I am using \binom
as well in my document, so I would like the bracket sizes to be similar for \binom
and \multiset
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过显式指定括号的大小
然后使用
\!
作为负空间以使括号彼此更靠近。You can explicitly specify the size of the brackets via
Then use
\!
for negative space to get the brackets closer to each other.可以使用 e-TeX
\middle
命令,如下所示:这假设您正在使用 AMSmath 软件包。如果不是,请使用
\atop
将\genfrac
替换为适当的结构。(当然这是一个黑客:正确的解决方案是双括号的可扩展字形,但我找不到任何提供它的字体。)
我很惊讶它也不能在谷歌上搜索,所以我将提供一个为了后代的缘故,这里提出了解决方案。
One can use the e-TeX
\middle
command as follows:This assumes that you are using the AMSmath package. If not, replace
\genfrac
with the appropriate construct using\atop
.(Of course this is a hack: the proper solution would be scalable glyphs for the doubled parenthesis, but I can't find any fonts that provide it.)
I'm surprised it wasn't googlable either, so I'll provide a solution here for posterity's sake.
还可以使用
\tbinom
和\dbinom
定义两个不同的新命令(amsmath
包用户指南):It is also possible to define two different new commands, using
\tbinom
and\dbinom
(section 4.11.2 of the User's Guide for theamsmath
Package):