답변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