Responder1
A maioria dos símbolos de operação binária tem uma contraparte “n-ária”:
+
tem\sum
\cdot
tem\prod
\oplus
tem\bigoplus
\vee
tem\bigvee
\wedge
tem\bigwedge
e outros. Por razões históricas, \vee
e \wedge
têm nomes alternativos \lor
e \land
, mas as versões “grandes” não.
\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}
Você pode preferir ter \biglor
e \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}
A saída é a mesma.
Observação.Isso \AtBeginDocument
não é realmente necessário com pdflatex
, mas é se você usar unicode-math
e XeLaTeX ou LuaLaTeX.