라텍스에서 부울 기호 아래에 쓰는 방법은 무엇입니까?

라텍스에서 부울 기호 아래에 쓰는 방법은 무엇입니까?

나는 다음과 같은 것을 쓰고 싶다

그림

하지만 단순히 _뒤에 쓰는 것은 \land작동하지 않습니다.

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

관련 정보