答案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