「顆粒球」という言葉は、「好中球、好酸球、好塩基球」の 3 つのカテゴリに分けられます。これを次の設定にどのように含めればよいでしょうか。

「顆粒球」という言葉は、「好中球、好酸球、好塩基球」の 3 つのカテゴリに分けられます。これを次の設定にどのように含めればよいでしょうか。

の細分化は同じ図内で行う必要があります。中括弧で細分化したの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}

関連情報