答案1
大多数二进制运算符号都有一个“n 元”对应项:
+
有\sum
\cdot
有\prod
\oplus
有\bigoplus
\vee
有\bigvee
\wedge
有\bigwedge
和其他。由于历史原因,\vee
和\wedge
有替代名称\lor
和\land
,但“大”版本没有。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{gather*}
\bigvee_{1\leq k\leq n} a_k = a_1\lor a_2\lor \dots \lor a_n
\\
\bigwedge_{1\leq k\leq n} a_k = a_1\land a_2\land \dots \land a_n
\end{gather*}
\end{document}
您可能更喜欢拥有\biglor
和\blgland
:
\documentclass{article}
\usepackage{amsmath}
\AtBeginDocument{%
\NewCommandCopy{\biglor}{\bigvee}%
\NewCommandCopy{\bigland}{\bigwedge}%
}
\begin{document}
\begin{gather*}
\biglor_{1\leq k\leq n} a_k = a_1\lor a_2\lor \dots \lor a_n
\\
\bigland_{1\leq k\leq n} a_k = a_1\land a_2\land \dots \land a_n
\end{gather*}
\end{document}
输出是一样的。
笔记。对于 来说,这\AtBeginDocument
实际上并不是必需的,但如果您使用XeLaTeX 或 LuaLaTeX 的话,pdflatex
则是必需的。unicode-math