중괄호 안의 하위 방정식과 배열

중괄호 안의 하위 방정식과 배열

다음과 같은 것이 필요합니다.

\left\{
first line  (1a)
second line (1b)
third line  (1c)
\right.

모든 줄은 왼쪽으로 정렬되어야 합니다

답변1

(다음에 따라 업데이트egreg님의 칭찬입니다. 감사해요!)

첫 번째 예엠페크주어진남자 이름생략하면 유효하지 않습니다.초과 적재로딩시 옵션엠페크패키지. 에서 제공하는 라텍스 파일의 경우남자 이름, 전혀 문제가 없습니다. 그러나 \usepackage[overload]{empheq}다른 많은 패키지를 로드한 상태에서 IEEEtrans를 사용하면 pdflatex컴퓨터가 정지되고 이유를 알 수 없으므로 옵션 없이 로드했습니다 overload. 옵션 empheq없이 로드할 때의 버전은 다음과 같습니다 overload( \empheqlbrace큰 왼쪽 괄호는 \,추가 공간을 추가하는 데 사용되며 기본값은 너무 빡빡합니다.):

\begin{subequations}
    \begin{empheq}[left={K(A)=\empheqlbrace\,}]{align}
      & (I \otimes e^A) \psi\left(A^T \oplus (-A) \right) \\
      & (e^{A^T/2} \otimes e^{A/2}) \operatorname{sinch}\left(\frac{1}{2}[A^T \oplus (-A)]\right) \\
      & \frac{1}{2}(e^{A^T} \oplus e^A) \tau\left(\frac{1}{2}[e^T \oplus (-A)]\right),
    \end{empheq}
\end{subequations}

출력은 다음과 같습니다. 데모 이미지


인용에 대한 질문은 기본적으로 작동합니다. 예를 들어 다음 코드를 참조하세요.

\documentclass[a4paper,10pt]{article}

\usepackage{amsmath}
\usepackage{empheq}

\begin{document}
We refer to the subequation (\ref{eq:2}) and the whole equation (\ref{eq:all}).
\begin{subequations}
  \label{eq:all}
    \begin{empheq}[left={K(A)=\empheqlbrace\,}]{align}
      & (I \otimes e^A) \psi\left(A^T \oplus (-A) \right)
        \label{eq:1} \\
      & (e^{A^T/2} \otimes e^{A/2}) \operatorname{sinch}\left(\frac{1}{2}[A^T
        \oplus (-A)]\right)
        \label{eq:2}\\
      & \frac{1}{2}(e^{A^T} \oplus e^A) \tau\left(\frac{1}{2}[e^T \oplus
        (-A)]\right),
        \label{eq:3}
    \end{empheq}
\end{subequations}
\end{document}

이는

답변2

두 가지 솔루션: 하나는 empheq패키지와 align환경을 사용하고 다른 하나는 패키지 subnumcases의 환경을 사용합니다 cases. 기본값이 그다지 좋지 않다는 것을 알았기 때문에 두 가지 모두에서 버팀대 간격을 조정해야 했습니다(첫 번째 경우에는 너무 작고 두 번째 경우에는 너무 큼).

    \documentclass{article}

    \usepackage[utf8]{inputenc}
    \usepackage[overload]{empheq}
    \usepackage{cases} 

    \begin{document}

    \begin{subequations}
    \begin{align}[left = \empheqlbrace\,]
      & a = b \\
       & c = d
    \end{align}
    \end{subequations}

    \begin{subnumcases}{}
    \!\! a = b \\
    \!\! c = d
    \end{subnumcases}

    \end{document} 

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

관련 정보