[latex] 방정식에서 중괄호 옆에있는 두 개의 문

중괄호 ( {) 가 하나 있고 오른쪽에있는 중괄호 옆에 두 개의 다른 줄에있는 두 개의 문이 있는 방정식을 어떻게 작성할 수 있습니까?



답변

casesamsmath 에서 env를 사용해 볼 수 있습니다 .

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{equation}
  f(x)=\begin{cases}
    1, & \text{if $x<0$}.\\
    0, & \text{otherwise}.
  \end{cases}
\end{equation}

\end{document}

amsmath 케이스


답변

특정 패키지없이 일반 LaTeX에서 달성 할 수 있습니다.

\documentclass{article}
\begin{document}
This is your only binary choices
\begin{math}
  \left\{
    \begin{array}{l}
      0\\
      1
    \end{array}
  \right.
\end{math}
\end{document}

이 코드는 필요한 것처럼 보이는 것을 생성합니다.

두 줄 앞의 중괄호

@Tombart에서와 동일한 예제를 유사한 코드로 얻을 수 있습니다.

\documentclass{article}

\begin{document}

\begin{math}
  f(x)=\left\{
    \begin{array}{ll}
      1, & \mbox{if $x<0$}.\\
      0, & \mbox{otherwise}.
    \end{array}
  \right.
\end{math}

\end{document}

이 코드는 매우 유사한 결과를 생성합니다.

여기에 이미지 설명 입력


답변

를 찾습니까

\begin{cases}
  math text
\end{cases}

설명에서 명확하지 않았습니다. 그러나 이것이 당신이 찾고있는 것일 수 있습니다. http://en.wikipedia.org/wiki/Help:Displaying_a_formula#Continuation_and_cases


답변

@MLT의 의견에 대해서도 대답하기 위해 cases두 줄에 번호가 매겨진 너무 정교하지 않은 표준 환경에 대한 대안이 있습니다. 이 코드 :

\documentclass{article}
\usepackage{amsmath}
\usepackage{cases}

\begin{document}

\begin{numcases}{f(x)=}
  1, & if $x<0$\\
  0, & otherwise
\end{numcases}

\end{document}

생산하다

출력 pdf 스크린 샷

여기서 math는 적어도 각 줄 의 오른쪽에 \(...\)또는 로 구분되어야합니다 ( 참조 ).$...$&


답변

아니면 이거:

f(x)=\begin{cases}
0, & -\pi\leqslant x <0\\
\pi, & 0 \leqslant x \leqslant +\pi
\end{cases}


답변