“粒细胞”一词分为“中性粒细胞、嗜酸性粒细胞和嗜碱性粒细胞”三类。我如何将其包含在以下设置中?

“粒细胞”一词分为“中性粒细胞、嗜酸性粒细胞和嗜碱性粒细胞”三类。我如何将其包含在以下设置中?

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

相关内容