Antwort1
Die meisten binären Operationssymbole haben ein „n-äres“ Gegenstück:
+
hat\sum
\cdot
hat\prod
\oplus
hat\bigoplus
\vee
hat\bigvee
\wedge
hat\bigwedge
und andere. Aus historischen Gründen haben \vee
und \wedge
die alternativen Namen \lor
und \land
, die „großen“ Versionen jedoch nicht.
\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}
Vielleicht möchten Sie Folgendes \biglor
haben \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}
Die Ausgabe ist die gleiche.
Notiz.Dies \AtBeginDocument
ist bei nicht wirklich erforderlich pdflatex
, jedoch, wenn Sie unicode-math
XeLaTeX oder LuaLaTeX verwenden.