'과립구'라는 단어는 '호중구, 호산구, 호염기구'의 세 가지 범주로 나뉩니다. 다음 설정에 어떻게 포함시킬 수 있나요?

'과립구'라는 단어는 '호중구, 호산구, 호염기구'의 세 가지 범주로 나뉩니다. 다음 설정에 어떻게 포함시킬 수 있나요?

의 하위 구분은 granulocytes동일한 그림에 있어야 합니다. luekocytes중괄호로 세분화된 것처럼 '과립구'도 나누어져야 하지만 동일한 그림으로 표시됩니다.

    \documentclass[11pt,a4paper]{article}
    \usepackage[utf8]{inputenc}
    \usepackage{blindtext}
    \usepackage{mathtools}
    \usepackage{IEEEtrantools}
    \usepackage{array}
    \begin{document}
\[\text{Luekocytes}=\left\{\begin{array}{l l}
\text{Granulocytes}\\
\text{Agranulocytes}\\
\end{array}\right.\]\\
    \end{document}

답변1

이 같은?

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

\documentclass[11pt,a4paper]{article}
\usepackage{amsmath}  % for "cases" environment and "\text" macro
\begin{document}
\[
\text{Leukocytes}=
\begin{cases}
  \text{Granulocytes}
      \begin{cases}
        \text{Neutrophils}\\
        \text{Eosinophils}\\
        \text{Basophils}
      \end{cases}\\
   \text{Agranulocytes}\\
\end{cases}
\]
\end{document}

부록: 보다 간결한 "모양"을 원한다면 중첩 array환경 대신 중첩 환경을 사용할 수 있습니다 cases. (내 생각으로는 환경에 맞춰 제작된 모습을 더 선호합니다 cases.)

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

\documentclass[11pt,a4paper]{article}
\usepackage{amsmath} % for "\text" macro
\begin{document}
\[
\text{Leukocytes}= 
\left\{ \begin{array}{l}
   \text{Granulocytes}
     \left\{ \begin{array}{l} 
        \text{Neutrophils}\\
        \text{Eosinophils}\\
        \text{Basophils}
     \end{array} \right.\\
   \text{Agranulocytes}\\
\end{array} \right.
\]
\end{document}

관련 정보