问题这个枚举

问题这个枚举

如何使项目 a) 和 b) 彼此之间的距离相同,也许这是一个编号的问题,如何才能将所有东西都编号为 a) b) c) 等等? 在此处输入图片描述

\begin{flushleft}
$ a)\; D = (B - A) \cup (A - (B \cup C)) \cup (C - A)\\* $
$ A = \{1,2,3,4,5,6,7\}  $
$ B = \{2,5,6,9,10\}  $
$ C = \{4,7,8,11,12\} \\* $
$ b)\; A = \{1,2,8\} $
$ B = \{6,7\} $
$ C = \{2,3,4,5,7\} $
\end{flushleft}

答案1

像这样:

在此处输入图片描述

使用包enumerate列表enumitem

\documentclass{article}
\usepackage{enumitem}

\begin{document}
\begin{enumerate}[label=\alph{*}), align=left, leftmargin=*]
\item   $D = (B - A) \cup (A - (B \cup C)) \cup (C - A)$
\item   $A = \{1,2,3,4,5,6,7\}$
\item   $B = \{2,5,6,9,10\}$
\item   $C = \{4,7,8,11,12\}$
\item   $A = \{1,2,8\}$
\item   $B = \{6,7\}$
\item   $C = \{2,3,4,5,7\}$
\end{enumerate}
\end{document}

相关内容