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