我知道\Cap
(或\doublecap
) 并且我知道\bigcap
。但是,现在我还需要\bigCap
(或\bigdoublecap
) ,它是 ,\bigcap
中间\cap
是 。
我已经尝试使用\stackinset
stackengine 包,但无法产生不错的结果。
答案1
虽然不太好看,但如果没有其他办法,也许你可以这样做。
\documentclass{article}
\usepackage{amsmath,graphicx}
\newcommand{\bigdoublecap}{%
\mathop{\vphantom{\bigcap}\vcenter{\hbox{\text{%
\ooalign{$\displaystyle\bigcap$\cr
\hidewidth
\raisebox{-.1ex}{\resizebox{.7\width}{.875\height}{$\displaystyle\bigcap$}}%
\hidewidth\cr
}%
}}}}%
}
\begin{document}
\[
\bigdoublecap_{i=1}^n A_i
\]
\end{document}
答案2
我使用了包\stackinset
中的 AND 例程scalerel
。它插入的是\bigcap
已缩小到 1.6ex 高度(将其缩小到适当宽度)然后垂直拉伸到 2ex 高度的 。经过处理的插入位于水平居中,比未改变的 底部高 .15pt \bigcap
。
\documentclass{article}
\usepackage{amsmath}
\usepackage{scalerel}
\usepackage{stackengine}[2013-10-15]
\newcommand\bigdoublecap{%
\mathop{\ensurestackMath{\stackinset{c}{}{b}{.15pt}%
{\stretchto{\scaleto{\bigcap}{1.6ex}}{2ex}}{\bigcap}}}
}
\begin{document}
\[
\bigdoublecap_{i=1}^n A_i
\]\end{document}