두 방정식의 오른쪽에 중괄호를 어떻게 조판할 수 있나요?

두 방정식의 오른쪽에 중괄호를 어떻게 조판할 수 있나요?

라텍스에서 이것을 얻는 방법은 무엇입니까?

여기에 이미지 설명을 입력하세요

감사합니다.

답변1

관심 있는 출력을 생성하는 두 가지 방법은 다음과 같습니다. 하나는 환경을 사용하는 것이고 array다른 하나는 rcases환경을 사용하는 것입니다. 후자의 방법은 타이핑이 덜 필요합니다. 그러나 패키지를 로드해야 합니다. mathtools어쨌든 그렇게 할 수 있습니다. 참고: drcases대신 을 사용하는 경우 dcases두 가지 \displaystyle지시문을 생략하여 입력 노력을 더 절약할 수 있습니다.

여기에 이미지 설명을 입력하세요

\documentclass{article}
\usepackage{mathtools} % for 'rcases' environment
\setlength\textwidth{3in} % just for this example
\begin{document}
With \texttt{array} environment:

\[ 
\left.\begin{array}{ll}
  \displaystyle \int_\Omega f L(g)\,dx\\[2ex]
  \displaystyle \int_\Omega g L(f)\,dx
\end{array}\right\}
\]

\bigskip
With \texttt{rcases} environment:

\[
\begin{rcases}
  \displaystyle \int_\Omega f L(g)\,dx\\
  \displaystyle \int_\Omega g L(f)\,dx
\end{rcases}
\]
 \end{document}

관련 정보