将 \cup 与 \bigcup “互换”

将 \cup 与 \bigcup “互换”

我在代码中使用\bigcup得比 更频繁,所以我想将命令更改为类似和 的内容。同样,对于和当然。我只是使用包。\cup\bigcup --> \cup\cup --> \smallcup\bigcap\capamsmath

我已经找到了一种方法来做到这一点,但我还想知道什么是合适的或者文本友好型采用这种方法是为了确保在此过程中不会破坏任何其他代码。

答案1

像这样吗?

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}

\let\smallcup\cup 
\let\cup\bigcup
\let\smallcap\cap 
\let\cap\bigcap

\begin{document}
$\smallcup\cup_{i=1}^n \displaystyle \cup_{i=1}^n$

\medskip
$\smallcap\cap_{j=0}^\infty \displaystyle \cap_{j=0}^\infty$
\end{document}

相关内容