「粒細胞」一詞分為三類:「嗜中性球、嗜酸性球和嗜鹼性球」。我如何將其包含在以下設定中?

「粒細胞」一詞分為三類:「嗜中性球、嗜酸性球和嗜鹼性球」。我如何將其包含在以下設定中?

的細分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}

相關內容